Last active
August 21, 2020 14:48
-
-
Save juanpvh/16ed8eb0dcdf99ece6d27b4c75324e91 to your computer and use it in GitHub Desktop.
Install aws-cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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