Created
February 2, 2019 21:31
-
-
Save dgmorales/5c7abe273c90a740d6c0ce2f6d6750b8 to your computer and use it in GitHub Desktop.
Terraform example showing list, count and function usage on resources
This file contains 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 characters
locals { | |
org_user_list = [ | |
"someguy", | |
"someotherguy", | |
"dgmorales" | |
] | |
} | |
resource "github_membership" "dgmorales" { | |
count = "${length(local.org_user_list)}" | |
username = "${element(local.org_user_list, count.index)}" | |
role = "member" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment