mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
29e5a355b9
Add the Version and Providers fields to the module config. Add ProviderConfig.Scope, which will be used to record the original path of a ProviderConfig for interpolation.
8 lines
102 B
HCL
8 lines
102 B
HCL
module "child" {
|
|
source = "./child"
|
|
version = "0.1.2"
|
|
providers = {
|
|
"aws" = "aws.foo"
|
|
}
|
|
}
|