mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-26 08:26:26 -06:00
10 lines
121 B
HCL
10 lines
121 B
HCL
variable "foo" {}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
|
|
value = "${var.foo}"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {}
|