我正在尝试在嵌套模板中部署函数应用程序(应用程序服务)、应用程序服务计划和Azure存储帐户,但在尝试部署时收到错误消息:
Status Message: The Resource 'Microsoft.Storage/storageAccounts/saaccountname389' under resource group '<null>' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix (Code:ResourceNotFound)
导致模板失败的部分在函数app的属性中的appSettings中,它试图列出存储帐户密钥。我见过的所有示例模板(包括Azure中的导出模板选项),请按照下面的代码使用listKeys(resourceId('Microsoft.Storage/storageAccounts',‘storageaccountnamehere’执行此操作:
"appSettings": [
{
"name": "AzureWebJobsStorage",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('Resources').FunctionStorageAccName,';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('Resources').FunctionStorageAccName), '2019-06-01').keys[0].value,';EndpointSuffix=','core.windows.net')]"
},
{
"name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('Resources').FunctionStorageAccName,';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('Resources').FunctionStorageAccName), '2019-06-01').keys[0].value,';EndpointSuffix=','core.windows.net')]"
}
我看到我的模板和我看到的其他模板之间的唯一区别是,我的模板是嵌套的,我想我可能没有在嵌套模板中正确使用resourceId,但是我真的无法确定我需要做什么不同的事情,并且ms文档没有指出更多的清晰度:https://docs.microsoft.com/en-us/azure/azure-resource-manager/templates/scope-functions?tabs=azure-powershell。
我尝试了resourceId函数的许多变体,比如包括资源组名、资源组名称和订阅ID -所有这些都会返回略微不同的错误。
完整的嵌套模板如下:
{
"name": "data",
"type": "Microsoft.Resources/deployments",
"apiVersion": "2017-05-10",
"resourceGroup": "[variables('ResourceGroups').RGFunction]",
"dependsOn": [
"[resourceId('Microsoft.Resources/resourceGroups',variables('ResourceGroups').RGFunction)]"
],
"properties": {
"mode": "Incremental",
"template": {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"apiVersion": "2018-11-01",
"name": "[variables('Resources').FunctionName]",
"type": "Microsoft.Web/sites",
"kind": "functionapp",
"location": "[parameters('locationName')]",
"tags": {},
"dependsOn": [
"[variables('Resources').FunctionASPName]",
"[variables('Resources').FunctionStorageAccName]"
],
"properties": {
"name": "[variables('Resources').FunctionName]",
"siteConfig": {
"appSettings": [
{
"name": "FUNCTIONS_EXTENSION_VERSION",
"value": "~3"
},
{
"name": "FUNCTIONS_WORKER_RUNTIME",
"value": "dotnet"
},
{
"name": "AzureWebJobsStorage",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('Resources').FunctionStorageAccName,';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('Resources').FunctionStorageAccName), '2019-06-01').keys[0].value,';EndpointSuffix=','core.windows.net')]"
},
{
"name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('Resources').FunctionStorageAccName,';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('Resources').FunctionStorageAccName), '2019-06-01').keys[0].value,';EndpointSuffix=','core.windows.net')]"
},
{
"name": "WEBSITE_CONTENTSHARE",
"value": "[concat(toLower(variables('Resources').FunctionName), 'a97a')]"
}
],
"use32BitWorkerProcess": true
},
"serverFarmId": "[concat('/subscriptions/', subscription().subscriptionId,'/resourcegroups/', variables('ResourceGroups').RGFunction, '/providers/Microsoft.Web/serverfarms/', variables('Resources').FunctionASPName)]",
"clientAffinityEnabled": false
}
},
{
"apiVersion": "2018-11-01",
"name": "[variables('Resources').FunctionASPName]",
"type": "Microsoft.Web/serverfarms",
"location": "[parameters('locationName')]",
"kind": "",
"tags": {},
"dependsOn": [],
"properties": {
"name": "[variables('Resources').FunctionASPName]",
"workerSize": "[parameters('FunctionConfiguration').ASPworkerSize]",
"workerSizeId": "[parameters('FunctionConfiguration').ASPworkerSize]",
"numberOfWorkers": "[parameters('FunctionConfiguration').ASPnumberOfWorkers]"
},
"sku": {
"Tier": "[parameters('FunctionConfiguration').ASPsku]",
"Name": "[parameters('FunctionConfiguration').ASPskuCode]"
}
},
{
"apiVersion": "2019-06-01",
"type": "Microsoft.Storage/storageAccounts",
"name": "[variables('Resources').FunctionStorageAccName]",
"location": "[parameters('locationName')]",
"tags": {},
"sku": {
"name": "Standard_LRS"
},
"properties": {
"supportsHttpsTrafficOnly": true,
"minimumTlsVersion": "TLS1_2"
}
}
]
}
}
}
转载请注明出处:http://www.hnph-smd.com/article/20230526/1152236.html