github.com/hashicorp/terraform-plugin-sdk@v1.17.2/internal/configs/testdata/valid-modules/override-variable/a_override.tf (about)

     1  variable "fully_overridden" {
     2    default = "a_override"
     3    description = "a_override description"
     4    type = string
     5  }
     6  
     7  variable "partially_overridden" {
     8    default = "a_override partial"
     9  }