Eric Miller

Results 12 comments of Eric Miller

This is probably an ugly solution, but you can approximate the effect of amend by: 1. Set `toAmend` to the commit you would like to amend. 2. Set `parent` to...

Also: `--exec` does not propagate environment to the resulting command, which creates issues for any binaries which depend on environment to function, such as `asdf`.

What I use exec for now: * The single most important usage of `exec` that I have is wrapping `aws eks get-token` in kubeconfigs. * I live in a many-account...

In terms of the implementation — I am likely wrong about this, but the only positional arg that granted cares about is the first one, correct? If so, could we...

I've been using as my `assume` script this for the past week on a macbook, and it has been reliable.

I needed to change `net.keepalive_idle_timeout` to resolve the issue.

If I am understanding you correctly, then no that would not work for me. The behavior I want is "Set this tag to this value **only** if the ingress itself...

I would also like to see this get merged. I do not know much about terraform programming or debugging, but I can see: - https://github.com/hashicorp/terraform-provider-aws/pull/26935/files#diff-d9f95211f49cb64e3e599050bee4ca1e1f9071418fcc34594928c4dc2fb28d68R201-R203 - https://github.com/hashicorp/terraform-provider-aws/pull/26935/files#diff-d9f95211f49cb64e3e599050bee4ca1e1f9071418fcc34594928c4dc2fb28d68R229 - https://github.com/hashicorp/terraform-provider-aws/pull/26935/files#diff-d9f95211f49cb64e3e599050bee4ca1e1f9071418fcc34594928c4dc2fb28d68R290-R302 It...

The recursive function should probably also keep track of the set of profile names in the stack, in order to check for a loop.

"Automatically zero the configs I use for production access" is not an acceptable failure mode for something that runs automatically. It creates a situation where, if there is an SCM...