12 lines
133 B
Terraform
12 lines
133 B
Terraform
|
|
module "child" {
|
||
|
|
source = "./child"
|
||
|
|
}
|
||
|
|
|
||
|
|
provider "aws" {
|
||
|
|
from = "root"
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "aws_instance" "foo" {
|
||
|
|
from = "root"
|
||
|
|
}
|