github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/terraform/testdata/plan-variable-sensitivity-module/child/main.tf (about) 1 variable "foo" { 2 type = string 3 } 4 5 // "bar" is defined as sensitive by both the parent and the child 6 variable "bar" { 7 sensitive = true 8 } 9 10 resource "aws_instance" "foo" { 11 foo = var.foo 12 value = var.bar 13 }