variables.tf435 B
View on GitHubvariable "cidr_block" {
description = "The CIDR block for the VPC"
type = string
}
variable "environment" {
description = "The environment name"
type = string
}
variable "enable_dns_hostnames" {
description = "Whether to enable DNS hostnames in the VPC"
type = bool
default = true
}
variable "tags" {
description = "Tags to apply to the VPC"
type = map(string)
default = {}
}