Mike Bailey

Results 27 comments of Mike Bailey

Possibly. What’s the behaviour if you run the command against a running instance? Do you need to restart the instance separately before it takes effect? For consistency with most other...

Thanks for your reply I wouldn’t make it stop/start instances as that could be a dangerous surprise for other users. Instance stop might be a good example of a function...

Ah, OK. That's interesting. Does ELB connection draining not meet your needs? I've always avoided making changes outside of CloudFormation for the reason you pointed out - CloudFormation will try...

The bash-my-aws region commands are well documented. https://bash-my-aws.org/command-reference/#region-commands - Mike On Fri, 5 Mar 2021 at 4:21 am, Libert Schmidt wrote: > Switching between AWS profiles is easily done by...

> Switching between AWS profiles is easily done by setting `AWS_PROFILE` environment variable. > > If you want auto-completion, you can use a below code snippet. Add it to your...

Are you still using this? How's it been working out for you? Re-reading this PR, you've done a neat job and if I used profiles I would want to use...

This is tricky. How does a function know the difference between some "nothing" being piped in and there being no pipe involved?

awscli-v2 increased timestamp length by 8 chars We gotta trim them! https://github.com/aws/aws-cli/issues/5045

Should still be done

This will trim them: ``` $ stacks | sed 's/\([0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}T[0-9]\{2\}:[0-9]\{2\}:[0-9]\{2\}\)\S*/\1/g' docker-stack-bash-my-aws CREATE_FAILED 2020-03-12T12:19:48 NEVER_UPDATED NOT_NESTED elbv2 CREATE_COMPLETE 2021-03-09T13:38:08 NEVER_UPDATED NOT_NESTED ``` Much better than without: ``` $ stacks docker-stack-bash-my-aws CREATE_FAILED...