Forrest logo
back to context overview

aws-cloudformation

List of commands for aws-cloudformation:

  • aws-cloudformation:tldr:48927 aws-cloudformation: Check the status of a stack.
    $ aws cloudformation describe-stacks --stack-name ${stack-id} --profile ${profile}
    try on your machine
    explain this command
  • aws-cloudformation:tldr:51da6 aws-cloudformation: List all running stacks.
    $ aws cloudformation list-stacks --stack-status-filter CREATE_COMPLETE --profile ${profile}
    try on your machine
    explain this command
  • aws-cloudformation:tldr:75c52 aws-cloudformation: Check the drift status output of a stack using 'StackDriftDetectionId' from the previous command output.
    $ aws cloudformation describe-stack-resource-drifts --stack-name ${stack-drift-detection-id} --profile ${profile}
    try on your machine
    explain this command
  • aws-cloudformation:tldr:d1300 aws-cloudformation: Initiate drift detection for a stack.
    $ aws cloudformation detect-stack-drift --stack-name ${stack-id} --profile ${profile}
    try on your machine
    explain this command
  • aws-cloudformation:tldr:dbaf6 aws-cloudformation: Create a stack from a template file.
    $ aws cloudformation create-stack --stack-name ${stack-name} --region ${region} --template-body ${file:--filename-yml} --profile ${profile}
    try on your machine
    explain this command
  • aws-cloudformation:tldr:e741d aws-cloudformation: Delete a stack.
    $ aws cloudformation delete-stack --stack-name ${stack-name} --profile ${profile}
    try on your machine
    explain this command
  • aws-cloudformation:tldr:e9802 aws-cloudformation: List all stacks.
    $ aws cloudformation list-stacks --profile ${profile}
    try on your machine
    explain this command
back to context overview