aws cloudformation

Model, provision, and manage AWS and third-party resources by treating infrastructure as code. More information: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/cloudformation/index.html.

aws cloudformation create-stack --stack-name {{stack-name}} --region {{region}} --template-body {{file://path/to/file.yml}} --profile {{profile}}

aws cloudformation delete-stack --stack-name {{stack-name}} --profile {{profile}}

aws cloudformation list-stacks --profile {{profile}}

aws cloudformation list-stacks --stack-status-filter CREATE_COMPLETE --profile {{profile}}

aws cloudformation describe-stacks --stack-name {{stack-id}} --profile {{profile}}

aws cloudformation detect-stack-drift --stack-name {{stack-id}} --profile {{profile}}

aws cloudformation describe-stack-resource-drifts --stack-name {{stack-drift-detection-id}} --profile {{profile}}