Skip to content

Commit

Permalink
Fixing property reference
Browse files Browse the repository at this point in the history
  • Loading branch information
frasermolyneux committed Sep 27, 2024
1 parent f054a42 commit bf16069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/aad_group_membership.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource "azuread_group_member" "group_membership" {
for_each = { for each in var.sql_admin_aad_group_members : each => each }

group_object_id = azuread_group.sql_admin_group.id
group_object_id = azuread_group.sql_admin_group.object_id
member_object_id = data.azuread_service_principal.workload[each.value].object_id
}

0 comments on commit bf16069

Please sign in to comment.