mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-18 22:00:36 -05:00
10 lines
121 B
HCL
10 lines
121 B
HCL
variable "foo" {}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
|
|
value = "${var.foo}"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {}
|