Skip to content

Commit

Permalink
fix: #948 arc missing system identity (#949)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardHd committed Aug 2, 2022
1 parent 5c39064 commit 2b29471
Showing 1 changed file with 5 additions and 2 deletions.
Expand Up @@ -41,6 +41,10 @@
"type": "Microsoft.KubernetesConfiguration/extensions",
"apiVersion": "2021-09-01",
"name": "[parameters('extensionName')]",
"scope": "[concat('Microsoft.Kubernetes/connectedClusters/', parameters('connectedClusterName'))]",
"identity": {
"type": "SystemAssigned"
},
"tags": "[ if(contains(parameters('tagsByResource'), 'Microsoft.KubernetesConfiguration/extensions'), parameters('tagsByResource')['Microsoft.KubernetesConfiguration/extensions'], json('{}')) ]",
"properties": {
"extensionType": "Microsoft.AzureKeyVaultSecretsProvider",
Expand All @@ -55,8 +59,7 @@
"secrets-store-csi-driver.rotationPollInterval": "[parameters('rotationPollInterval')]",
"secrets-store-csi-driver.syncSecret.enabled": "[parameters('enableSyncSecret')]"
}
},
"scope": "[concat('Microsoft.Kubernetes/connectedClusters/', parameters('connectedClusterName'))]"
}
}
]
}

0 comments on commit 2b29471

Please sign in to comment.