728x90
AWS CLI 설치 및 설정
AWS CLI 설치 (MacOS 기준)
brew install awscli
AWS CLI 설치 확인
$ aws --version
aws-cli/2.8.12 Python/3.9.11 Darwin/22.4.0 exe/x86_64 prompt/off
AWS CLI 환경 설정
$ aws configure
AWS Access Key ID [****************CCHQ]:
AWS Secret Access Key [****************x/2N]:
Default region name [ap-northeast-2]:
Default output format [json]:
특정 환경으로 설정 시
$ aws configure --profile username
AWS CLI 설정 확인
$ cat ~/.aws/config
[default]
region = ap-northeast-2
output = json
cat ~/.aws/credentials
#[default]
#aws_secret_access_key = ~
#aws_access_key_id = ~
AWS CLI 설정 정상 여부 확인
# AWS에 있는 모든 s3 버킷 나열
$ aws s3 ls
2023-05-08 09:57:46 dev-serverlessdeploymentbucke-1tit8oq27rhcb
2023-05-08 11:07:48 dev-serverlessdeploymentbucke-5tiyr3m7o91v
특정 환경으로 실행 시
aws s3 ls --profile "username"
AWS CLI 사용자 정보 조회
AWS CLI로 특정 Region의 사용자 정보 조회
$ aws --region ap-northeast-2 iam get-user
{
"User": {
"Path": "/",
"UserName": "USERID",
"UserId": "IDXXXXXXXXXXXXXXXXXXX",
"Arn": "arn:aws:iam::000000000000:user/USERID",
"CreateDate": "2023-03-10T07:03:49+00:00",
"PasswordLastUsed": "2023-05-12T06:18:50+00:00",
"Tags": [
{
"Key": "KEYXXXXXXXXXXXXXXXXXX",
"Value": "Application"
},
{
"Key": "TEAM",
"Value": "Team"
}
]
}
}
특정 환경의 계정 정보 조회
$ aws --profile username --region ap-northeast-2 iam get-user
참고
728x90
'MacOS' 카테고리의 다른 글
[MacOS] Apple Silicon Mac(M1, M2, M3...)에 Python2 설치하기 (0) | 2023.12.02 |
---|---|
[MacOS] Mac에서 readonly 파일 강제저장하기 (0) | 2023.05.17 |
[MacOS] Mac에 설치된 여러개의 Java(JDK) 버전 쉽게 전환하기 (1) | 2022.07.20 |
[MacOS] iTerm2 단축키 (0) | 2022.07.02 |
[MacOS] MacOS에 pip 설치하기 (0) | 2021.08.18 |
댓글