Skip to content

Commit

Permalink
chore(AZ-1453): fix regression on identities
Browse files Browse the repository at this point in the history
  • Loading branch information
jmapro committed Sep 9, 2024
1 parent 6b7b209 commit 1006f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ locals {


identity = var.azure_monitor_agent_user_assigned_identity != null || var.identity.type == "UserAssigned" ? {
type = "UserAssigned"
type = "SystemAssigned, UserAssigned"
identity_ids = compact(concat(var.identity.identity_ids, [var.azure_monitor_agent_user_assigned_identity]))
} : var.identity

Expand Down

0 comments on commit 1006f6a

Please sign in to comment.