Hi everyone, how I can fill the UserAssignedIdenti...
# dotnet
w
Hi everyone, how I can fill the UserAssignedIdentities inside Identity property of Azure Next Gen ApplicationGateway? The documentation seems to be outdated, because UserAssignedIdentities receives a InputMap<object> and I don't undestand how I use this.
t
So, basically
Copy code
UserAssignedIdentities = 
{
    { "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity1",  new Dictionary<string, object>() },
},
🙌 1
w
It works!! Thanks!!