mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-15 04:00:58 -05:00
In order to import into a module, we have to make sure that module has registered the expansion data.
12 lines
120 B
HCL
12 lines
120 B
HCL
provider "aws" {
|
|
foo = "bar"
|
|
}
|
|
|
|
module "child" {
|
|
count = 1
|
|
source = "./child"
|
|
providers = {
|
|
aws = aws
|
|
}
|
|
}
|