From bb2c7f4993973181b53164ee87e05eec9b1c4c60 Mon Sep 17 00:00:00 2001 From: ms-snarang Date: Thu, 25 Sep 2025 14:47:31 +0530 Subject: [PATCH] function plan change --- samples/Quickstart/infra/azureFunction.bicep | 10 +++++----- .../infra/azureFunction.bicep | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/samples/Quickstart/infra/azureFunction.bicep b/samples/Quickstart/infra/azureFunction.bicep index 02c74b88..20e9c518 100644 --- a/samples/Quickstart/infra/azureFunction.bicep +++ b/samples/Quickstart/infra/azureFunction.bicep @@ -24,13 +24,13 @@ resource funcStorageAccount 'Microsoft.Storage/storageAccounts@2021-08-01' = { resource hostingPlan 'Microsoft.Web/serverfarms@2021-03-01' = { name: appServiceName location: location - kind: 'functionapp' + kind: 'functionapp,linux' sku: { name: 'S1' tier: 'Standard' } properties: { - //reserved: true + reserved: true } tags: appTags } @@ -52,9 +52,9 @@ resource functionApp 'Microsoft.Web/sites@2021-03-01' = { reserved: true clientAffinityEnabled: false siteConfig: { - netFrameworkVersion: 'v8.0' - //linuxFxVersion: 'dotnet-isolated|8.0' - //use32BitWorkerProcess: false + //netFrameworkVersion: 'v8.0' + linuxFxVersion: 'dotnet-isolated|8.0' + use32BitWorkerProcess: false alwaysOn: true } } diff --git a/samples/UseCaseSamples/ModifyCapabilityStatement/infra/azureFunction.bicep b/samples/UseCaseSamples/ModifyCapabilityStatement/infra/azureFunction.bicep index 3a9bde30..a60e6f29 100644 --- a/samples/UseCaseSamples/ModifyCapabilityStatement/infra/azureFunction.bicep +++ b/samples/UseCaseSamples/ModifyCapabilityStatement/infra/azureFunction.bicep @@ -24,13 +24,13 @@ resource funcStorageAccount 'Microsoft.Storage/storageAccounts@2021-08-01' = { resource hostingPlan 'Microsoft.Web/serverfarms@2021-03-01' = { name: appServiceName location: location - kind: 'functionapp' + kind: 'functionapp,linux' sku: { name: 'S1' tier: 'Standard' } properties: { - //reserved: true + reserved: true } tags: appTags } @@ -52,9 +52,9 @@ resource functionApp 'Microsoft.Web/sites@2021-03-01' = { reserved: true clientAffinityEnabled: false siteConfig: { - netFrameworkVersion: 'v8.0' - //linuxFxVersion: 'dotnet-isolated|8.0' - //use32BitWorkerProcess: false + //netFrameworkVersion: 'v8.0' + linuxFxVersion: 'dotnet-isolated|8.0' + use32BitWorkerProcess: false alwaysOn:true } }