github.com/hugorut/terraform@v1.1.3/src/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 }