Skip to content

Commit

Permalink
Fixed deployment issue
Browse files Browse the repository at this point in the history
  • Loading branch information
LeighS committed May 4, 2023
1 parent 31edf20 commit 4c65889
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 20 deletions.
22 changes: 3 additions & 19 deletions deploy/appService.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ resource appServicePlan 'Microsoft.Web/serverfarms@2021-02-01' = {
name: appServicePlanName
location: location
sku: {
name: 'P1v3'
size: 'P1v3'
tier: 'PremiumV3'
name: 'B1'
size: 'B1'
tier: 'Basic'
capacity: 1
}
kind: 'linux'
Expand Down Expand Up @@ -183,14 +183,6 @@ resource diagnosticSettingsApp 'Microsoft.Insights/diagnosticSettings@2021-05-01
scope: appService
properties: {
logs: [
{
category: 'AppServiceAntivirusScanAuditLogs'
enabled: true
retentionPolicy: {
days: 0
enabled: false
}
}
{
category: 'AppServiceHTTPLogs'
enabled: true
Expand All @@ -215,14 +207,6 @@ resource diagnosticSettingsApp 'Microsoft.Insights/diagnosticSettings@2021-05-01
enabled: false
}
}
{
category: 'AppServiceFileAuditLogs'
enabled: true
retentionPolicy: {
days: 0
enabled: false
}
}
{
category: 'AppServiceAuditLogs'
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion deploy/containerRegistry.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource containerRegistry 'Microsoft.ContainerRegistry/registries@2021-12-01-pr
name: containerRegistryName
location: location
sku: {
name: 'Standard'
name: 'Basic'
}
}

Expand Down

0 comments on commit 4c65889

Please sign in to comment.