mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-20 12:02:01 -04:00
8 lines
109 B
HCL
8 lines
109 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
resource aws_instance "web" {
|
|
depends_on = ["module.child"]
|
|
}
|