Files
opentf/terraform/testdata/import-module/main.tf
James Bardin 8f4395a1e9 ensure modules are expanded during import
In order to import into a module, we have to make sure that module has
registered the expansion data.
2020-06-10 17:02:41 -04:00

12 lines
120 B
HCL

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