diff --git a/.azure/infrastructure/test.bicepparam b/.azure/infrastructure/test.bicepparam index e5652330f..4efab5825 100644 --- a/.azure/infrastructure/test.bicepparam +++ b/.azure/infrastructure/test.bicepparam @@ -30,7 +30,7 @@ param slackNotifierSku = { applicationServicePlanTier: 'Dynamic' } param postgresSku = { - name: 'Standard_B1ms' + name: 'Standard_B2s' tier: 'Burstable' } diff --git a/.azure/modules/postgreSql/create.bicep b/.azure/modules/postgreSql/create.bicep index dd8a85167..157caf171 100644 --- a/.azure/modules/postgreSql/create.bicep +++ b/.azure/modules/postgreSql/create.bicep @@ -24,7 +24,7 @@ param tags object @export() type Sku = { - name: 'Standard_B1ms' + name: 'Standard_B1ms' | 'Standard_B2s' | 'Standard_B4ms' | 'Standard_B8ms' | 'Standard_B12ms' | 'Standard_B16ms' | 'Standard_B20ms' tier: 'Burstable' | 'GeneralPurpose' | 'MemoryOptimized' }