I have a single file where code looks like,
locals{
lambda_slos = “json path”}
module “lambda_slos”{
source = git hub repo path
for_each = for s in local.lambda_slos : s.title => s
title = each.value.title}
all in same terraform file, how to get the title output from module . If i give output with local.lambda_slos i can see all those titles but i am unable tosee it from modules.