Skip to content

Commit 2ae3ef5

Browse files
author
Steven Nemetz
committed
Fix key name
1 parent a1fc35d commit 2ae3ef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module "enabled" {
1010

1111
resource "github_membership" "this" {
1212
count = "${module.enabled.value ? length(var.users) : 0}"
13-
username = "${lookup(var.users[count.index], "name")}"
13+
username = "${lookup(var.users[count.index], "username")}"
1414
role = "${lookup(var.users[count.index], "role", "member")}"
1515

1616
# member or admin

0 commit comments

Comments
 (0)