通过 ARM 模板设置 Power BI Embedded 密钥

Set Power BI Embedded key through ARM template

有什么方法可以通过 ARM 模板设置 Power BI 访问密钥吗?当我创建资源时,生成了两个访问密钥,但未在 ARM 模板中指定。我能否让此资源使用与之前创建的 Power BI 工作区集合相同的密钥?

{
            "type": "Microsoft.PowerBI/workspaceCollections",
            "sku": {
                "name": "S1",
                "tier": "Standard"
            },
            "tags": { "displayName": "Power BI" },
            "name": "[parameters('powerBIname')]",
            "apiVersion": "2016-01-29",
            "location": "eastus2",
            //"keys": [
            //    {
            //        "keyName": "Key 1",
            //        "value": "xxxx"
            //    },
            //    {
            //        "keyName": "Key 2",
            //        "value": "yyyy"
            //    }
            //]
        },

不,密钥是由 Azure 生成的。您无法设置它们,但您可以使用 ListKeys 函数获取密钥并将它们输出以供进一步使用。