-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CloudFormation Stack Tracking #146
base: master
Are you sure you want to change the base?
Conversation
Contents: | ||
|
||
``` | ||
existingStacks: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add the stack arns into the output here for readability, debugging, and sanity checking during the updates.
|
||
Questions: | ||
|
||
- Perhaps AWS profiles should be resolved down to the IAM role they use? In that |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That would be useful.
Track the iidy arguments for existing CloudFormation stacks: | ||
|
||
``` | ||
$ iidy create-stack --track stack-args.yaml --profile ... --region ... --environment ... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any thoughts about alternatives to --track
? --record
, ...
- --environment production | ||
- --region us-east-1 | ||
- --profile sandbox | ||
env: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would we inspect for env vars that are imported / used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes – we could just look at $imports
for any env:...
values
No description provided.