Skip to content

Commit 434af91

Browse files
Fixed syntax error
1 parent c687d81 commit 434af91

File tree

1 file changed

+1
-1
lines changed
  • modules/azure/api_management_api

1 file changed

+1
-1
lines changed

modules/azure/api_management_api/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ resource "azuread_service_principal" "application" {
333333
resource "azuread_group_member" "registered_app_member" {
334334
count = local.should_assign_group ? 1 : 0
335335
group_object_id = var.group_id
336-
member_object_id = azuread_service_principal.application[0].object_id
336+
member_object_id = azuread_service_principal.application.object_id
337337
}
338338

339339
resource "azuread_application_password" "password" {

0 commit comments

Comments
 (0)