github.com/cycloidio/terraform@v1.1.10-0.20220513142504-76d5c768dc63/configs/testdata/invalid-modules/object-optional-attrs-experiment/object-optional-attrs-experiment.tf (about)

     1  variable "a" {
     2    type = object({
     3      # The optional attributes experiment isn't enabled, so this isn't allowed.
     4      a = optional(string)
     5    })
     6  }