mirror of
https://github.com/opentofu/opentofu.git
synced 2026-06-09 00:22:36 -04:00
11 lines
118 B
Terraform
11 lines
118 B
Terraform
|
|
variable "test" {
|
||
|
|
sensitive = true
|
||
|
|
default = "nope"
|
||
|
|
}
|
||
|
|
|
||
|
|
module "child" {
|
||
|
|
source = "./child"
|
||
|
|
|
||
|
|
test = var.test
|
||
|
|
}
|