Azure資源管理器(ARM)在Azure上部署我的模板時出現錯誤。這部分崩潰:Azure資源管理器給出部署錯誤
{
"comments": "Some comments.",
"tags": {
"displayName": "Server IP Address"
},
"type": "Microsoft.Network/publicIPAddresses",
"name": "[variables('publicIPAddressesDevTableauServerIpName')]",
"apiVersion": "2017-06-01",
"location": "[parameters('location')]",
"properties": {
"publicIPAllocationMethod": "Static",
"idleTimeoutInMinutes": 4,
"dnsSettings": {
"domainNameLabel": "[parameters('tableauResourceGroupName')]"
}
},
"dependsOn": []
},
錯誤,我越來越:
{
"error": {
"code": "NoRegisteredProviderFound",
"message": "No registered resource provider found for location 'westeurope' and API version '2017-09-01' for type 'publicIPAddresses'. The supported api-versions are '2014-12-01-preview, 2015-05-01-preview, 2015-06-15, 2016-03-30, 2016-06-01, 2016-07-01, 2016-08-01, 2016-09-01, 2016-10-01, 2016-11-01, 2016-12-01, 2017-03-01, 2017-04-01, 2017-06-01, 2017-08-01, 2017-09-01'. The supported locations are 'westus, eastus, northeurope, westeurope, eastasia, southeastasia, northcentralus, southcentralus, centralus, eastus2, japaneast, japanwest, brazilsouth, australiaeast, australiasoutheast, centralindia, southindia, westindia, canadacentral, canadaeast, westcentralus, westus2, ukwest, uksouth, koreacentral, koreasouth'."
}
}
我已經嘗試了不同版本的API,但沒有運氣。誰有一些想法,爲什麼它可能會發生?直到9月3日止,第4次停止工作。我假定微軟在API版本上推出了一些更新。
謝謝你的promt anwer。然而,我沒有在代碼中使用2017-09-01 api版本的地方,似乎Azure以某種方式錯誤地採取了它。我已經嘗試了2017-09-01或2017-06-01以外的其他api版本,但沒有運氣。那麼我需要在哪裏保存文件? – pacer05
好吧,我不知道你是如何部署的,或者你在部署什麼,但是如果這是你部署的代碼,那麼你不會部署這些代碼。天青不會取代你的模板中的任何東西 – 4c74356b41
所以,終於得到了微軟的迴應,是他們網站上的一個錯誤。 – pacer05