github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/internal/terraform/testdata/validate-variable-custom-validations-child-sensitive/validate-variable-custom-validations.tf (about)

     1  variable "test" {
     2    sensitive = true
     3    default = "nope"
     4  }
     5  
     6  module "child" {
     7    source = "./child"
     8  
     9    test = var.test
    10  }