Skip to content

Commit e882103

Browse files
committed
update the usecase azure function configuration to match quickstart's configuration
1 parent 395eb66 commit e882103

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

samples/UseCaseSamples/ModifyCapabilityStatement/infra/azureFunction.bicep

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ resource hostingPlan 'Microsoft.Web/serverfarms@2021-03-01' = {
2626
location: location
2727
kind: 'functionapp'
2828
sku: {
29-
name: 'Y1'
30-
tier: 'Dynamic'
29+
name: 'S1'
30+
tier: 'Standard'
3131
}
3232
properties: {
33-
reserved: true
33+
//reserved: true
3434
}
3535
tags: appTags
3636
}
@@ -55,6 +55,7 @@ resource functionApp 'Microsoft.Web/sites@2021-03-01' = {
5555
netFrameworkVersion: 'v8.0'
5656
//linuxFxVersion: 'dotnet-isolated|8.0'
5757
//use32BitWorkerProcess: false
58+
alwaysOn:true
5859
}
5960
}
6061

0 commit comments

Comments
 (0)