Windows에 AWS CLI를 설치하는 방법
4666 단어 aws-cli
참고 : Windows에서 AWS CLI 버전 2 설치, 업데이트 및 제거 - AWS Command Line Interface
설치
버전 확인
GitBash 및 명령 프롬프트를 시작하고 확인
$ aws --version
aws-cli/2.1.3 Python/3.7.7 Windows/10 exe/AMD64
설정하기
액세스 키 만들기
설정하다
입력 값의 예는 Windows에서 AWS CLI 버전 2 설치, 업데이트 및 제거 - AWS Command Line Interface
$ aws configure
AWS Access Key ID [None]: {csvファイルにあるAccess key ID}
AWS Secret Access Key [None]: {csvファイルにあるSecret access key}
Default region name [None]: {使うリージョン}
Default output format [None]: json
여기서 입력한 내용은
~/.aws/credentials
와 ~/.aws/config
에 출력되어 있다시도에 AWS Secrets Manager에서 비밀 값을 가져옵니다.
참고 : 비밀 값 가져오기 - AWS Secrets Manager
# おぉぉできた
$ aws secretsmanager get-secret-value --secret-id hoge/ponsuke
{
"ARN": "arn:aws:secretsmanager:ap-northeast-1:8xxxxxxxx:secret:hoge/ponsuke-6XXXXX",
"Name": "hoge/ponsuke",
"VersionId": "3-xxxx-xxx...",
"SecretString": "{\"ponsuke\":\"tarou\"}",
"VersionStages": [
"AWSCURRENT"
],
"CreatedDate": "2020-11-24T14:48:38.906000+09:00"
}
Reference
이 문제에 관하여(Windows에 AWS CLI를 설치하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ponsuke0531/items/ce951e9f8ced041712cb
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
# おぉぉできた
$ aws secretsmanager get-secret-value --secret-id hoge/ponsuke
{
"ARN": "arn:aws:secretsmanager:ap-northeast-1:8xxxxxxxx:secret:hoge/ponsuke-6XXXXX",
"Name": "hoge/ponsuke",
"VersionId": "3-xxxx-xxx...",
"SecretString": "{\"ponsuke\":\"tarou\"}",
"VersionStages": [
"AWSCURRENT"
],
"CreatedDate": "2020-11-24T14:48:38.906000+09:00"
}
Reference
이 문제에 관하여(Windows에 AWS CLI를 설치하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ponsuke0531/items/ce951e9f8ced041712cb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)