mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-25 10:02:16 -04:00
11 lines
108 B
HCL
11 lines
108 B
HCL
provider "aws" {
|
|
foo = "bar"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
providers = {
|
|
aws = aws
|
|
}
|
|
}
|