opentofu/terraform/testdata/transform-provider-grandchild-inherit/main.tf
2019-06-30 10:16:15 +02:00

12 lines
137 B
HCL

provider "aws" {
alias = "foo"
value = "config"
}
module "child" {
source = "./child"
providers = {
aws.bar = aws.foo
}
}