mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
10 lines
123 B
HCL
10 lines
123 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
resource "aws_instance" "a" {
|
|
ami = "parent"
|
|
|
|
depends_on = ["module.child"]
|
|
}
|