As of 2020/03/22, you can download msi installer for AWS CLI from here.
After installation of AWS CLI, you have to proceed basic configuration as it is required to access to aws environment.
# Configure your aws credential
> aws configure
AWS Access Key ID [None]: AK*************
AWS Secret Access Key [None]: ViC****************
Default region name [None]: ap-northeast-1
Default output format [None]: json
> aws configure
AWS Access Key ID [None]: AK*************
AWS Secret Access Key [None]: ViC****************
Default region name [None]: ap-northeast-1
Default output format [None]: json
These information will be stored on .aws folder on your user directory with files "config" and "credentials".
After setting up, you can check connectivity and resources on you aws environment with following commands.
# Run aws commands
> aws ec2 describe-instances
> aws lambda list-functions
> aws ec2 describe-instances
> aws lambda list-functions
No comments:
Post a Comment