mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-05 15:02:02 -04:00
11 lines
118 B
HCL
11 lines
118 B
HCL
variable "test" {
|
|
sensitive = true
|
|
default = "nope"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
|
|
test = var.test
|
|
}
|