We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 395eb66 commit e882103Copy full SHA for e882103
samples/UseCaseSamples/ModifyCapabilityStatement/infra/azureFunction.bicep
@@ -26,11 +26,11 @@ resource hostingPlan 'Microsoft.Web/serverfarms@2021-03-01' = {
26
location: location
27
kind: 'functionapp'
28
sku: {
29
- name: 'Y1'
30
- tier: 'Dynamic'
+ name: 'S1'
+ tier: 'Standard'
31
}
32
properties: {
33
- reserved: true
+ //reserved: true
34
35
tags: appTags
36
@@ -55,6 +55,7 @@ resource functionApp 'Microsoft.Web/sites@2021-03-01' = {
55
netFrameworkVersion: 'v8.0'
56
//linuxFxVersion: 'dotnet-isolated|8.0'
57
//use32BitWorkerProcess: false
58
+ alwaysOn:true
59
60
61
0 commit comments