github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/terraform/testdata/plan-variable-sensitivity/main.tf (about) 1 variable "sensitive_var" { 2 default = "foo" 3 sensitive = true 4 } 5 6 resource "aws_instance" "foo" { 7 foo = var.sensitive_var 8 }