terraform/configs/configload/testdata/expand-modules/provider-configured/root.tf

12 lines
132 B
HCL

provider "aws" {
region = "us-west-2"
}
module "child" {
count = 1
source = "./child"
providers = {
aws = aws.w2
}
}