Skip to content

Instantly share code, notes, and snippets.

@sleepy-mouse
Last active March 15, 2022 12:47
Show Gist options
  • Save sleepy-mouse/dd4b65d7e4f03302b1decfec6118fea2 to your computer and use it in GitHub Desktop.
Save sleepy-mouse/dd4b65d7e4f03302b1decfec6118fea2 to your computer and use it in GitHub Desktop.
[AWS_CLI,CLI] AWS CLI V2

Installation

Linux

curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
complete -C aws_completer aws

Auto Complete

Use config files to set up

CloudFormation

  • Create a stack

    aws cloudformation create-stack --stack-name <stack name> \
    --template-url <URL for template file in S3> \
  • Delete a stack

    aws cloudformation delete-stack \
    --stack-name <stack name / stack ID>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment