Skip to content

Instantly share code, notes, and snippets.

@dgmorales
Created February 2, 2019 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgmorales/2881335ae7a7fe8fbb73cf39292bc99f to your computer and use it in GitHub Desktop.
Save dgmorales/2881335ae7a7fe8fbb73cf39292bc99f to your computer and use it in GitHub Desktop.
An email to github username map Terraform module
# 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}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment