Eric Holmes

Results 90 issues of Eric Holmes

Should just set the `width` attribute to a percentage value: `100%`, `75%`, `50%`, `25%`

enhancement

Recent versions of Macbooks include the touch bar, which has TouchID + Secure Enclave. It would be nice if aws-vault supported using [biometrics through TouchID](https://developer.apple.com/documentation/localauthentication/accessing_keychain_items_with_face_id_or_touch_id?language=objc), instead of passwords when accessing...

feature

It would be nice if I could use `assume-role` to execute a binary with temporary credentials from GetSessionToken, like it can with AssumeRole. Unfortunately, this needs to happen [upstream](https://github.com/aws/aws-sdk-go/issues/1370) in...

enhancement

At the moment, the lifecycle around hooks are pretty basic: 1. `pre_build` runs before stacker does anything to stacks 2. `post_build` runs after stack does everything to stacks It would...

enhancement

Support for specifying a `stack_name` separate from `name` was added in https://github.com/remind101/stacker/pull/551 to support stacks with the same name, but in different regions/accounts, however, this introduces the possibility for two...

You can provide this with `--region` or `--profile`, or using `AWS_REGION/AWS_PROFILE`, but I think it'd also be good to support these options in the stacker config file.

We have a fairly small team of people that run stacker right now, so it's easy to ask someone if they're doing something in an environment, but I think it's...

question

CloudFormation [has an `EstimateTemplateCost` API](https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_EstimateTemplateCost.html), which you can pass a CloudFormation template, and get back a URL to the cost calculator. It'd be kinda cool if stacker could automate this...

enhancement

The KMS lookup is really handy for field level encryption, but it's also really slow if you use it a lot. This is because: 1. Each `${kms}` lookup is a...