github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/terraform/testdata/apply-data-sensitive/main.tf (about)

     1  variable "foo" {
     2    sensitive = true
     3    default = "foo"
     4  }
     5  
     6  data "null_data_source" "testing" {
     7    foo = var.foo
     8  }