Skip to content

Commit b7586f2

Browse files
authored
feat(azure): Upgrade postgres SKU for prod/yt01 (#1450)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Upgraded PostgreSQL service configuration to improve performance with a new SKU name: `Standard_D4ads_v5`. - **Bug Fixes** - Resolved inconsistencies in PostgreSQL configuration parameters across infrastructure files. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 9f7130b commit b7586f2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.azure/infrastructure/prod.bicepparam

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ param slackNotifierSku = {
3131
}
3232
param postgresConfiguration = {
3333
sku: {
34-
name: 'Standard_B1ms'
35-
tier: 'Burstable'
34+
name: 'Standard_D4ads_v5'
35+
tier: 'GeneralPurpose'
3636
}
3737
enableQueryPerformanceInsight: false
3838
}

.azure/infrastructure/yt01.bicepparam

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ param slackNotifierSku = {
3131
}
3232
param postgresConfiguration = {
3333
sku: {
34-
name: 'Standard_B1ms'
35-
tier: 'Burstable'
34+
name: 'Standard_D4ads_v5'
35+
tier: 'GeneralPurpose'
3636
}
3737
enableQueryPerformanceInsight: true
3838
}

0 commit comments

Comments
 (0)