mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-23 23:50:12 -06:00
15 lines
212 B
HCL
15 lines
212 B
HCL
variable "sensitive_var" {
|
|
default = "foo"
|
|
sensitive = true
|
|
}
|
|
|
|
variable "another_var" {
|
|
sensitive = true
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
foo = var.sensitive_var
|
|
bar = var.another_var
|
|
}
|