github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/internal/terraform/testdata/validate-variable-custom-validations-child/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  }