[컴] Windows 에서 AWS CLI 사용하기

aws credentials / aws cli  

Windows 에서 AWS CLI 사용하기

아래 경로에서 .msi 를 download 해서 설치할 수 있다.

기본적으로 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

See Also

  1. node.js - Missing credentials in config, if using AWS_CONFIG_FILE, set AWS_SDK_LOAD_CONFIG=1 - Stack Overflow
  2. Loading credentials in Node.js from the shared credentials file - AWS SDK for JavaScript
  3. 쿠...sal: [컴][웹] AWS CLI 로 s3 에 파일 업로드 하기 

댓글 없음:

댓글 쓰기