Referencing a Managed Service Identity in ARM-template deploy

前端 未结 2 1700
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-01 16:58

When deploying a Microsoft.Web resource with the new MSI feature the principleId GUID for the created user is visible after deployment. Screenshot below shows the structure in t

相关标签:
2条回答
  • 2021-02-01 17:34

    Here are a few sample templates: https://github.com/rashidqureshi/MSI-Samples that show a) how to grant RBAC access to ARM resources b) how to create access policy for keyvault using the OID of the MSI

    0 讨论(0)
  • 2021-02-01 17:36

    I just struggled with this myself. The solution that worked for me was found deep in the comments here.

    Essentially, you create a variable targeting the resource you are creating with the MSI support. Then you can use the variable to fetch the specific tenantId and principalId values. Not ideal, but it works. In my examples, I'm configuring Key Vault permissions for a Function App.

    To create the variable, use the syntax below.

    "variables": {
        "identity_resource_id": "[concat(resourceId('Microsoft.Web/sites', variables('appName')), '/providers/Microsoft.ManagedIdentity/Identities/default')]"
    }
    

    To get the actual values for the tenantId and principalId, reference them with the following syntax:

    {
        "tenantId": "[reference(variables('identity_resource_id'), '2015-08-31-PREVIEW').tenantId]",
        "objectId": "[reference(variables('identity_resource_id'), '2015-08-31-PREVIEW').principalId]"
    }
    

    Hope this helps anyone who comes along with the same problem!

    0 讨论(0)
提交回复
热议问题