mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 04:10:28 -06:00
8dbc7e0ccb
modules This doesn't cause inheritence to work yet. That is coming
12 lines
133 B
HCL
12 lines
133 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
provider "aws" {
|
|
from = "root"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
from = "root"
|
|
}
|