Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions samples/Quickstart/infra/azureFunction.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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
}
}
Expand Down
Loading