Filter
Exclude
Time range
-
Near
Replying to @edjgeek
My Pro tip, move the stack name into the "global" section your SAM config file, so that you don't need to pass "--stack-name": [default.global] [default.global.parameters] stack_name = "my-awesome-sam-stack"

1
4
442
brazil-recursive-cmd --package package_name brazil-build && bb deploy_assets stack_name && bb cdk deploy stack_name
3
For example, if you want to set stack name to a default one, following values should work. [default.sync.parameters] stack_name = "my-app-stack" After setting these values you should be able to run “sam sync --watch” without stack name parameter.
1
2
Also, "aws cloudformation wait stack-create-complete --stack-name my-heater" could replace my-heater with $STACK_NAME.
2
1