mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-08 15:01:37 -04:00
12 lines
120 B
HCL
12 lines
120 B
HCL
provider "aws" {
|
|
foo = "bar"
|
|
}
|
|
|
|
module "child" {
|
|
count = 1
|
|
source = "./child"
|
|
providers = {
|
|
aws = aws
|
|
}
|
|
}
|