AWS CLI

자꾸 잊어서 적어놓기...

Docs

What is the AWS Command Line Interface?

  • Command-line shell 을 사용하여 AWS 서비스와 상호작용할 수 있는 open source tool

  • AWS CLI를 사용하면 minimal configuration으로 원하는 terminal program 에서 browser기반 AWS Management console에서 제공하는 것과 동일한 기능을 구현하는 명령을 실행할 수 있다

    • Linux shells

      • bash, zsh, tcsh 등의 일반적인 shell program을 사용하여 Linux 또는 MacOS 에서 명령 실행

    • Windows command line

      • Windows에서는 Powershell 또는 Windows command prompt 를 사용하여 명령 실행

    • Remotely

      • PuTTY, SSH 등의 원격 터미널 프로그램 또는 AWS Systems Manager 를 통해 EC2 instance에서 명령 실행

Installing the AWS CLI version 2 on Linux

1. Download the installation file

curl 명령어 사용

curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"

2. Unzip the installer

unzip awscliv2.zip

3. Run the install program

sudo ./aws/install

4. Confirm the installation

chloe@chloe-XPS-15-9570 ~
$ aws --version
aws-cli/2.0.19 Python/3.7.3 Linux/5.3.0-61-generic botocore/2.0.0dev23

Configuring the AWS CLI

configure

$ aws configure get aws_access_key_id
default_access_key

$ aws configure get default.aws_access_key_id
default_access_key

$ aws configure get aws_access_key_id --profile testing
testing_access_key

$ aws configure get profile.testing.aws_access_key_id
testing_access_key

ex)

region 확인해보기

chloe@chloe-XPS-15-9570 ~/Workspace/kendra-button/frontend/kendra-button-front
$ aws configure get region
us-west-2

Last updated