AWS CLI 설정

1 min read

참고 : Configuring the AWS Command Line Interface

aws configure 명령어로 프로필을 설정해서 다수의 계정을 사용할 수 있다.

~/.aws/config : Default region 설정 저장 ~/.aws.credentials : Access, Secret Key 저장

$ aws configure --profile PROFILE_NAME
AWS Access Key ID [None]: ACCESS_KEY
AWS Secret Access Key [None]: SECRET_ACCESS_KEY
Default region name [None]: REGION

사용법 :

aws s3 ls --profile PROFILE_NAME

© 2023 Raegon Kim