0

我可以在门户中手动分配用户分配的托管标识。

作为部署管道的一部分,在部署到暂存槽期间如何执行此操作?

我可以使用 PowerShell 来设置系统分配的托管标识,Set-AzureRMWebAppSlot但是我找不到为用户分配的方法。

4

1 回答 1

2

用户分配的标识目前处于预览阶段,如果您想以编程方式分配用户分配的托管标识,您可以尝试使用ARM 模板来执行此操作。

样本:

{
    "apiVersion": "2016-08-01",
    "type": "Microsoft.Web/sites",
    "name": "[variables('appName')]",
    "location": "[resourceGroup().location]",
    "identity": {
        "type": "UserAssigned",
        "userAssignedIdentities": {
            "[resourceId('Microsoft.ManagedIdentity/userAssignedIdentities', variables('identityName'))]": {}
        }
    },
    "properties": {
        "name": "[variables('appName')]",
        "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]",
        "hostingEnvironment": "",
        "clientAffinityEnabled": false,
        "alwaysOn": true
    },
    "dependsOn": [
        "[resourceId('Microsoft.Web/serverfarms', variables('hostingPlanName'))]",
        "[resourceId('Microsoft.ManagedIdentity/userAssignedIdentities', variables('identityName'))]"
    ]
}
于 2018-12-17T02:06:33.870 回答