aws credentials / aws cli
Windows 에서 AWS CLI 사용하기
아래 경로에서 .msi 를 download 해서 설치할 수 있다.
- Installing, updating, and uninstalling the AWS CLI version 2 on Windows - AWS Command Line Interface
기본적으로 C:\Program Files\Amazon\AWSCLIV2
에 설치된다. 변경도 가능하다.
D:\a\apps\AWSCLIV2
profiles 만들기
profiles 를 만들 수 있다. profile 이 별것은 아니고, access key id, secret access key 같은 것을 가지고 있는 file 이다.
C:\Program Files\Amazon\AWSCLIV2>aws configure --profile stage
AWS Access Key ID [None]: ADDSDFDFDSFSDFDS
AWS Secret Access Key [None]: hBc1ekjrklgklubkrw/fjklds;hte+dOTQ
Default region name [None]: ap-northeast-2
Default output format [None]: json
다음 2개의 file 이 c:\Users\<user_name>\.aws
에 만들어진다.
- config
- credentials
아래는 credentials 예제이다. stage 가 “configure 이름”이다.
[stage]
aws_access_key_id = ADDSDFDFDSFSDFDS
aws_secret_access_key = hBc1ekjrklgklubkrw/fjklds;hte+dOTQ
기본 profile 설정
환경변수로 AWS_PROFILE
를 설정해 주면 된다.
SET AWS_PROFILE=stage
댓글 없음:
댓글 쓰기