mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
13 lines
207 B
HCL
13 lines
207 B
HCL
module "a" {
|
|
source = "./child"
|
|
in = "${aws_instance.b.id}"
|
|
}
|
|
|
|
resource "aws_instance" "b" {}
|
|
|
|
resource "aws_instance" "c" {
|
|
some_input = "${module.a.out}"
|
|
|
|
depends_on = ["aws_instance.b"]
|
|
}
|