mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-29 10:21:01 -06:00
12 lines
142 B
Terraform
12 lines
142 B
Terraform
|
module "child" {
|
||
|
source = "./child"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "foo" {
|
||
|
num = "2"
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "bar" {
|
||
|
foo = "bar"
|
||
|
}
|