標簽:rgb str hoc manager div turn 中國 lte sof
App Service 配置 Application Settings 訪問Storage Account。如下:
{ "name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING", "value": "[concat(‘DefaultEndpointsProtocol=https;AccountName=‘,parameters(‘storageName‘),‘;AccountKey=‘,listKeys(variables(‘storageResourceId‘), ‘2015-05-01-preview‘).key1)]" }
得到 Could not be resolved: ‘*.file.core.windows.net‘的報錯
因為應用部署在中國區的App Service上,訪問的Storage Account也是中國區的資源,所以如果Host 需要為 file.core.chinacloudapi.cn。 而以上的配置方式默認自動后去的是Global獲取的Endpoint。中國區的Endpoint需要加上EndpointSuffix。有兩種配置方式:
[concat(‘DefaultEndpointsProtocol=https;AccountName=‘, variables(‘storageAccountName‘), ‘;EndpointSuffix=core.chinacloudapi.cn‘, ‘;AccountKey=‘,listKeys(resourceId(‘Microsoft.Storage/storageAccounts‘, variables(‘storageAccountName‘)), ‘2019-06-01‘).keys[0].value)]
[concat(‘DefaultEndpointsProtocol=https;AccountName=‘, variables(‘storageAccountName‘), ‘;EndpointSuffix=‘, environment().suffixes.storage, ‘;AccountKey=‘,listKeys(resourceId(‘Microsoft.Storage/storageAccounts‘, variables(‘storageAccountName‘)), ‘2019-06-01‘).keys[0].value)]
Environment() [This function returns properties for the current Azure environment.]:https://docs.azure.cn/en-us/azure-resource-manager/templates/template-functions-deployment?tabs=json#environment
標簽:rgb str hoc manager div turn 中國 lte sof
原文地址:https://www.cnblogs.com/lulight/p/15054896.html