如何使用Azure资源管理器模板获取Azure Maps帐户的主键

时间:2019-04-18 10:25:04

标签: azure azure-resource-manager arm-template azure-maps

对于我的部署,我需要将Azure Maps帐户的主键提供给前端。部署是通过azure资源管理器模板完成的。

密钥应写在ARM模板的输出中。

1 个答案:

答案 0 :(得分:2)

这可以通过以下代码实现:

"outputs": {
    "mapKey": {
        "type": "string",
        "value": "[listKeys(resourceId('Microsoft.Maps/accounts', variables('mapName')), providers('Microsoft.Maps', 'accounts').apiVersions[0]).primaryKey]",
        "metadata": {
            "description": "primary key for azure map"
        }
    }
}