17 lines
563 B
HCL
17 lines
563 B
HCL
variable "accesskey" {
|
|
description = "AWS Access Key 입력"
|
|
type = string
|
|
default = "AKIA2BV65SHTSEKQ5MOW" # 환경 변수 혹은 Terraform 실행시 입력 또는 default에 키 입력, 단 Git Push는 금지
|
|
}
|
|
|
|
variable "secretkey" {
|
|
description = "AWS Secret Key 입력"
|
|
type = string
|
|
default = "VbsiNKr+xHIK3tIm24u1u/H0nS3i5zsEPtkfMjFP" # 환경 변수 혹은 Terraform 실행시 입력 또는 default에 키 입력, 단 Git Push는 금지
|
|
}
|
|
|
|
variable "region" {
|
|
description = "사용할 region 입력"
|
|
type = string
|
|
default = "us-east-1"
|
|
} |