mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
10 lines
131 B
HCL
10 lines
131 B
HCL
module "b" {
|
|
source = "./modb"
|
|
}
|
|
|
|
module "a" {
|
|
source = "./moda"
|
|
|
|
single_element = "${element(module.b.computed_list, 0)}"
|
|
}
|