Hello,
is it possible to get output from module like this ?:
module "foo" {
...
}
output "id" {
value = ["${bar.this.*.id}"]
}
ressource "res" {
bar = ${element(module.foo.*.id, count.index)}
}
I don’t know how to use output from module.
Any help ?
thanks drug