mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-11 08:05:33 -06:00
12 lines
133 B
HCL
12 lines
133 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
provider "aws" {
|
|
from = "root"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
from = "root"
|
|
}
|