Created
February 2, 2019 21:21
-
-
Save dgmorales/2881335ae7a7fe8fbb73cf39292bc99f to your computer and use it in GitHub Desktop.
Revisions
-
dgmorales created this gist
Feb 2, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ # 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}" }