We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1fc35d commit 2ae3ef5Copy full SHA for 2ae3ef5
main.tf
@@ -10,7 +10,7 @@ module "enabled" {
10
11
resource "github_membership" "this" {
12
count = "${module.enabled.value ? length(var.users) : 0}"
13
- username = "${lookup(var.users[count.index], "name")}"
+ username = "${lookup(var.users[count.index], "username")}"
14
role = "${lookup(var.users[count.index], "role", "member")}"
15
16
# member or admin
0 commit comments