12 lines
209 B
Terraform
12 lines
209 B
Terraform
|
variable "fully_overridden" {
|
||
|
default = "base"
|
||
|
description = "base description"
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "partially_overridden" {
|
||
|
default = "base"
|
||
|
description = "base description"
|
||
|
type = string
|
||
|
}
|