수정 및 추가

This commit is contained in:
ByeonJungHun
2024-11-28 17:16:46 +09:00
parent 5186b2b0fe
commit 2edcf77bda
7 changed files with 474 additions and 8 deletions

View File

@@ -11,4 +11,12 @@ provider "aws" {
region = var.region
access_key = var.accesskey
secret_key = var.secretkey
}
}
/* AWS CLI를 통한 config를 사용할 경우
provider "aws" {
region = var.region
shared_config_files = ["/Users/tf_user/.aws/conf"]
shared_credentials_files = ["/Users/tf_user/.aws/creds"]
}
*/