mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-26 22:02:25 -04:00
8 lines
168 B
HCL
8 lines
168 B
HCL
resource "aws_instance" "foo" { }
|
|
resource "aws_instance" "bar" { }
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
in = "one,${aws_instance.foo.id},${aws_instance.bar.id}"
|
|
}
|