blob: 69bdbb4cbed8404b552dc321008e03ec198a9bc6 [file] [log] [blame]
variable "sensitive_var" {
default = "foo"
sensitive = true
}
variable "another_var" {
sensitive = true
}
module "child" {
source = "./child"
foo = var.sensitive_var
bar = var.another_var
}