From 3d6e6b07295d795f311b41b74f518f57e76623d5 Mon Sep 17 00:00:00 2001 From: makoto-kajihara Date: Tue, 4 Nov 2025 17:52:02 +0900 Subject: [PATCH] Update azuredeploy.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://learn.microsoft.com/ja-jp/azure/azure-functions/durable/durable-functions-configure-managed-identity AzureWebJobsStorage__credential: 「managedidentity」と入力します AzureWebJobsStorage__clientId: この GUID 値はマネージド ID リソースから取得します --- .../AppService.Dev.Specialist.Functions.1/azuredeploy.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/labFiles/AppService.Dev.Specialist.Functions.1/azuredeploy.json b/labFiles/AppService.Dev.Specialist.Functions.1/azuredeploy.json index e34bb3b..d9fe98f 100644 --- a/labFiles/AppService.Dev.Specialist.Functions.1/azuredeploy.json +++ b/labFiles/AppService.Dev.Specialist.Functions.1/azuredeploy.json @@ -162,7 +162,9 @@ ], "properties": { "AzureWebJobsStorage": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';EndpointSuffix=', environment().suffixes.storage, ';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2019-06-01').keys[0].value)]", - "AzureFunctionsWebHost__hostid": "[concat(variables('functionAppName'), '-hostid')]", + "AzureWebJobsStorage__credential": "managedidentity", + "AzureWebJobsStorage__clientId": "7526a7ac-5db4-4379-b1c7-780b2f1250c3", + "AzureFunctionsWebHost__hostid": "[concat(variables('functionAppName'), '-hostid')]", "AzureWebJobsDisableHomepage": "true", "BLOB_CONNECTION": "[concat('DefaultEndpointsProtocol=https;AccountName=x', variables('storageAccountName'), ';EndpointSuffix=', environment().suffixes.storage, ';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2019-06-01').keys[0].value)]", "TIMER_FUNCTION_GO": "true", @@ -177,4 +179,5 @@ ] } ] -} \ No newline at end of file + +}