mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
This adds additional coverage of the situation reported in #7195 to
prevent against regression. The actual fix was in 2356afd
, in response
to #7143.
10 lines
155 B
HCL
10 lines
155 B
HCL
module "mod1" {
|
|
source = "mod"
|
|
param = ["this", "one", "works"]
|
|
}
|
|
|
|
module "mod2" {
|
|
source = "mod"
|
|
param = ["${module.mod1.out_from_splat[0]}"]
|
|
}
|