Skip to content

Instantly share code, notes, and snippets.

@juanpvh
Last active August 21, 2020 14:48
Show Gist options
  • Save juanpvh/16ed8eb0dcdf99ece6d27b4c75324e91 to your computer and use it in GitHub Desktop.
Save juanpvh/16ed8eb0dcdf99ece6d27b4c75324e91 to your computer and use it in GitHub Desktop.
Install aws-cli
#Instalando aws-cli usando apt-get
sudo apt-get update
sudo apt-get install awscli -y
aws --version
#Instalando aws-cli na mão
apt-get install unzip -y
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
#Configurando as credenciais
aws configure
terraform init
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment