Skip to content

Commit

Permalink
bad
Browse files Browse the repository at this point in the history
  • Loading branch information
zachrundle committed Aug 22, 2024
1 parent 137a26c commit cf9decf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/iam_identity_users/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ resource "aws_identitystore_user" "this" {
resource "aws_identitystore_group_membership" "this" {
for_each = var.users
identity_store_id = tolist(data.aws_ssoadmin_instances.this.identity_store_ids)[0]
group_id = aws_identitystore_group.this.group_id
member_id = aws_identitystore_user.this.user_id
group_id = aws_identitystore_group.this[each.value.group].id
member_id = aws_identitystore_user.this[each.key].id
}

0 comments on commit cf9decf

Please sign in to comment.