728x90
AWS AK/SK를 EXPORT로 사용하거나, 파일에 저장하거나, 코드에 직접 넣기엔 보안적으로 너무나 안 좋다고 생각한다.
그래서 찾은 방법이 AWS의 profile을 사용하는 것이다.
hh@DESKTOP-4UIU15G:~$ aws configure --profile hh
AWS Access Key ID [None]: ******
AWS Secret Access Key [None]: ******
Default region name [None]: ap-northeast-2
Default output format [None]:
hh@DESKTOP-4UIU15G:~$ aws s3 ls --profile hh
aws configure --profile [profile_name]
명령으로 profile을 등록한다.
profile을 사용하여 aws 리소스에 접근할 수 있는지 확인한다.
hh@DESKTOP-4UIU15G:~$ cat .aws/config
[default]
region = ap-northeast-2
[profile hh]
region = ap-northeast-2
aws config 확인
자세한 정보는 cat .aws/credentials
로 확인
삭제하고 싶은 경우에는 두 파일을 직접 수정
728x90