mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-19 17:59:05 -05:00
11 lines
118 B
HCL
11 lines
118 B
HCL
variable "test" {
|
|
sensitive = true
|
|
default = "nope"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
|
|
test = var.test
|
|
}
|