terraform/config/module/test-fixtures/basic-parent-providers/a/a.tf

14 lines
177 B
HCL

provider "top" {}
provider "bottom" {
alias = "foo"
value = "from bottom"
}
module "c" {
source = "../c"
providers = {
"bottom" = "bottom.foo"
}
}