github.com/eliastor/durgaform@v0.0.0-20220816172711-d0ab2d17673e/internal/durgaform/testdata/validate-variable-custom-validations-child-sensitive/child/child.tf (about)

     1  variable "test" {
     2    type = string
     3  
     4    validation {
     5      condition     = var.test != "nope"
     6      error_message = "Value must not be \"nope\"."
     7    }
     8  }