Files
opentf/terraform/testdata/plan-module-variable-from-splat/main.tf
Pam Selle 8f7807684a Upgrade to quoted keywords to error
The warning about deprecation is upgraded to an error
2021-02-21 20:27:20 -05:00

10 lines
154 B
HCL

module "mod1" {
source = "./mod"
param = ["this", "one", "works"]
}
module "mod2" {
source = "./mod"
param = [module.mod1.out_from_splat[0]]
}