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

10 lines
198 B
HCL

provider "aws" {
alias = "usw2"
region = "us-west-2"
}
module "child" {
count = 1
source = "./child"
# To make this test fail, add a valid providers {} block passing "aws" to the child
}