Create an API Connection to an Azure Table Store via ARM

后端 未结 2 1023
庸人自扰
庸人自扰 2021-01-21 12:31

I\'m attempting to deploy an API Connection to a Table Store via an ARM template, but the template below is returning an error -

Input parameters are inva

2条回答
  •  失恋的感觉
    2021-01-21 13:06

    The values on the accepted answer did not work for me, this did though:

    "parameterValues": {
              "accountName": "[parameters('storageName')]",
              "accessKey": "[parameters('storageKey')]"
            }
    

提交回复
热议问题