mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Importing into a module requires a provider config. Update the inheritance test to reflect the new import restrictions.
11 lines
120 B
HCL
11 lines
120 B
HCL
provider "aws" {
|
|
foo = "bar"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
providers {
|
|
"aws" = "aws"
|
|
}
|
|
}
|