mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-16 11:29:57 -04:00
11 lines
209 B
HCL
11 lines
209 B
HCL
variable "fully_overridden" {
|
|
default = "base"
|
|
description = "base description"
|
|
type = string
|
|
}
|
|
|
|
variable "partially_overridden" {
|
|
default = "base"
|
|
description = "base description"
|
|
type = string
|
|
}
|