queirozsc
8/30/2017 - 9:29 PM

AWS Command Line Interfac http://docs.aws.amazon.com/cli/latest/userguide/installing.html

[Configurando o AWS Cli] Configurando a interface de linha de comando da AWS. Fonte: http://docs.aws.amazon.com/cli/latest/userguide/installing.html #aws #awscli

# Install Python Package Index
wget https://bootstrap.pypa.io/get-pip.py ;
python get-pip.py ;
# Install AWS Cli
pip install awscli --upgrade --user ;
# Configure shell environment
export PATH=~/.local/bin:$PATH ;
source ~/.profile ;
# Configure AWS credentials (note: get on AWS IAM service your Access id and secret and set json for output format)
aws configure ;
# Configure auto completer
which aws_completer ;
complete -C '/home/queiroz/.local/bin/aws_completer' aws ;