Skip to content

Instantly share code, notes, and snippets.

@dgmorales
Created February 2, 2019 21:21
Show Gist options
  • Select an option

  • Save dgmorales/2881335ae7a7fe8fbb73cf39292bc99f to your computer and use it in GitHub Desktop.

Select an option

Save dgmorales/2881335ae7a7fe8fbb73cf39292bc99f to your computer and use it in GitHub Desktop.

Revisions

  1. dgmorales created this gist Feb 2, 2019.
    13 changes: 13 additions & 0 deletions terraform-github-example-2.tf
    Original 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}"
    }