Files
assignment01/modules/vpc-subnet/valiables.tf
2025-11-18 03:20:27 +00:00

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
}