# modules/user-map/main.tf locals { user_map = { "someguy@stone.com.br" = "someguy" "otherguy@stone.com.br" = "strangenick89" } } # modules/user-map/output.tf output "map" { description = "Map of users emails address to GitHub nicknames" value = "${local.user_map}" }