terraform/configs/testdata/valid-modules/override-variable/primary.tf

12 lines
209 B
HCL

variable "fully_overridden" {
default = "base"
description = "base description"
type = string
}
variable "partially_overridden" {
default = "base"
description = "base description"
type = string
}