mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-18 13:00:36 -05:00
9 lines
130 B
HCL
9 lines
130 B
HCL
module "child" {
|
|
source = "./child"
|
|
leader = true
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "${module.child.leader}"
|
|
}
|