mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 11:42:58 -06:00
bc57c20d10
Ahead of the beta, remove the sensitive_variable experiment and update tests accordingly
10 lines
138 B
HCL
10 lines
138 B
HCL
variable "sensitive_var" {
|
|
default = "foo"
|
|
sensitive = true
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
foo = var.sensitive_var
|
|
}
|