mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-05 15:02:02 -04: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
|
|
}
|