Scripts for managing CloudFormation stacks.
python services/cloudformation/create_stack.py --stack-name my-stack --template-file template.yaml
python services/cloudformation/create_stack.py --stack-name my-stack --template-url https://s3.amazonaws.com/my-bucket/template.yaml
python services/cloudformation/create_stack.py --stack-name my-stack --template-file template.yaml --parameters '[{"ParameterKey":"Env","ParameterValue":"prod"}]'python services/cloudformation/list_stacks.py
python services/cloudformation/list_stacks.py --status-filter CREATE_COMPLETEpython services/cloudformation/describe_stack.py --stack-name my-stackpython services/cloudformation/delete_stack.py --stack-name my-stack
python services/cloudformation/delete_stack.py --stack-name my-stack --dry-run