opentofu/terraform/testdata/plan-variable-sensitivity-module/main.tf
Pam Selle bc57c20d10 Remove sensitive_variables experiment
Ahead of the beta, remove the sensitive_variable experiment
and update tests accordingly
2020-10-08 11:22:20 -04:00

10 lines
138 B
HCL

variable "sensitive_var" {
default = "foo"
sensitive = true
}
module "child" {
source = "./child"
foo = var.sensitive_var
}