mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06: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}"
|
|
}
|