opentofu/terraform/testdata/input-module-computed-output-element/main.tf
2019-06-30 10:16:15 +02:00

10 lines
131 B
HCL

module "b" {
source = "./modb"
}
module "a" {
source = "./moda"
single_element = "${element(module.b.computed_list, 0)}"
}