mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 15:36:26 -06:00
10 lines
111 B
Terraform
10 lines
111 B
Terraform
|
module "child" {
|
||
|
source = "./child"
|
||
|
}
|
||
|
|
||
|
provider "aws" {
|
||
|
set = true
|
||
|
}
|
||
|
|
||
|
resource "aws_instance" "foo" {}
|