opentofu/terraform/test-fixtures/import-provider-module/main.tf
James Bardin 402f321abe change import module inheritance test
Importing into a module requires a provider config. Update the
inheritance test to reflect the new import restrictions.
2017-10-27 09:08:15 -04:00

11 lines
120 B
HCL

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