7 lines
144 B
Terraform
7 lines
144 B
Terraform
|
variable "a" {
|
||
|
type = object({
|
||
|
# The optional attributes experiment isn't enabled, so this isn't allowed.
|
||
|
a = optional(string)
|
||
|
})
|
||
|
}
|