https://851114.tistory.com/14

 

AWS MFA 인증 CLI 명령어

AWS IAM 계정에 MFA 인증이 활성화 되어 있으면 AWS CLI 사용에 인증 문제가 발생한다. 그럴 경우 해당 명령어를 통해서 CLI에서도 인증을 받고 문제 없이 사용 할 수가 있다. aws sts get-session-token --profil..

851114.tistory.com

이전 글을 먼저 선행 한 후 아래와 같이 인증 토큰을 불러오면 사용 가능 하다.

 

provider "aws" {
  region                  = " "
  shared_credentials_file = "credentials file경로"
  profile                 = "mfa"
}

+ Recent posts