github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/internal/terraform/testdata/plan-variable-sensitivity-module/main.tf (about) 1 variable "sensitive_var" { 2 default = "foo" 3 sensitive = true 4 } 5 6 variable "another_var" { 7 sensitive = true 8 } 9 10 module "child" { 11 source = "./child" 12 foo = var.sensitive_var 13 bar = var.another_var 14 }