Skip to main content
variables.tf207 B
View on GitHub
variable "environment" {
description = "The environment name"
type = string
}

variable "enabled" {
description = "Whether this component is enabled"
type = bool
default = true
}

Related Documentation