mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 15:36:26 -06:00
8 lines
91 B
Terraform
8 lines
91 B
Terraform
|
module "child" {
|
||
|
source = "./child"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "foo" {
|
||
|
num = "2"
|
||
|
}
|