We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88e4ce4 commit ab2a859Copy full SHA for ab2a859
src/Aks/Aks/ChangeLog.md
@@ -18,6 +18,7 @@
18
- Additional information about change #1
19
-->
20
## Upcoming Release
21
+* Fixed the issue that HTTP request body contains empty userAssignedIdentities object when identity type is `SystemAssigned`.
22
23
## Version 6.0.4
24
* Fixed secrets exposure in example documentation.
src/Aks/Aks/Commands/CreateOrUpdateKubeBase.cs
@@ -698,6 +698,7 @@ protected ManagedCluster SetIdentity(ManagedCluster cluster)
698
if (cluster.Identity != null && cluster.Identity.Type == null)
699
{
700
cluster.Identity.Type = ResourceIdentityType.SystemAssigned;
701
+ cluster.Identity.UserAssignedIdentities = null;
702
}
703
704
0 commit comments