cowork
This commit is contained in:
@ -10,36 +10,42 @@ variable "prod_name" {
|
||||
default = "22shop"
|
||||
}
|
||||
|
||||
# variable "nat_id" {
|
||||
# description = "nat id value"
|
||||
# type = string
|
||||
# default = "insert_id"
|
||||
|
||||
# }
|
||||
# variable "igw_id" {
|
||||
# description = "value"
|
||||
# type = string
|
||||
# }
|
||||
|
||||
variable "subnet-az-public" {
|
||||
description = "Subnet available zone & cidr"
|
||||
type = map(map(string))
|
||||
default = {
|
||||
"zone-a" = {
|
||||
name = "ap-northeast-2a"
|
||||
cidr = "10.3.1.0/24"
|
||||
}
|
||||
"zone-c" = {
|
||||
name = "ap-northeast-2c"
|
||||
cidr = "10.3.3.0/24"
|
||||
}
|
||||
}
|
||||
}
|
||||
variable "subnet-az-private" {
|
||||
description = "Subnet available zone & cidr"
|
||||
type = map(map(string))
|
||||
default = {
|
||||
"zone-b" = {
|
||||
name = "ap-northeast-2b"
|
||||
cidr = "10.3.2.0/24"
|
||||
}
|
||||
"zone-d" = {
|
||||
name = "ap-northeast-2d"
|
||||
cidr = "10.3.4.0/24"
|
||||
}
|
||||
}
|
||||
}
|
||||
# variable "subnet-az-public" {
|
||||
# description = "Subnet available zone & cidr"
|
||||
# type = map(map(string))
|
||||
# default = {
|
||||
# "zone-a" = {
|
||||
# name = "ap-northeast-2a"
|
||||
# cidr = "10.3.1.0/24"
|
||||
# }
|
||||
# "zone-c" = {
|
||||
# name = "ap-northeast-2c"
|
||||
# cidr = "10.3.3.0/24"
|
||||
# }
|
||||
# }
|
||||
# }
|
||||
# variable "subnet-az-private" {
|
||||
# description = "Subnet available zone & cidr"
|
||||
# type = map(map(string))
|
||||
# default = {
|
||||
# "zone-b" = {
|
||||
# name = "ap-northeast-2b"
|
||||
# cidr = "10.3.2.0/24"
|
||||
# }
|
||||
# "zone-d" = {
|
||||
# name = "ap-northeast-2d"
|
||||
# cidr = "10.3.4.0/24"
|
||||
# }
|
||||
# }
|
||||
# }
|
Reference in New Issue
Block a user