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 |