20 lines
377 B
HCL
20 lines
377 B
HCL
variable "vpc_id" {
|
|
description = "set vpc id"
|
|
type = string
|
|
}
|
|
|
|
// reference | https://github.com/davidcsi/terraform/blob/master/healthchecks/main.tf
|
|
variable "subnet-az-list" {
|
|
description = "Subnet available zone & cidr"
|
|
type = map(map(string))
|
|
}
|
|
|
|
|
|
variable "public_ip_on" {
|
|
type = bool
|
|
}
|
|
|
|
variable "tag_name" {
|
|
description = "value"
|
|
type = string
|
|
} |