From 77de4f139c40bb23d641a8b67e31b85b3a1c9a2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20J=C3=B8rgen=20Skogstad?= Date: Thu, 14 Nov 2024 11:51:34 +0100 Subject: [PATCH] chore: Add D4ads_v5 to accepted SKU values (#1452) --- .azure/modules/postgreSql/create.bicep | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure/modules/postgreSql/create.bicep b/.azure/modules/postgreSql/create.bicep index a5673519b..78685d9c2 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' | 'Standard_B2s' | 'Standard_B4ms' | 'Standard_B8ms' | 'Standard_B12ms' | 'Standard_B16ms' | 'Standard_B20ms' + name: 'Standard_B1ms' | 'Standard_B2s' | 'Standard_B4ms' | 'Standard_B8ms' | 'Standard_B12ms' | 'Standard_B16ms' | 'Standard_B20ms' | 'Standard_D4ads_v5' tier: 'Burstable' | 'GeneralPurpose' | 'MemoryOptimized' } @@ -56,8 +56,8 @@ var postgresServerName = uniqueResourceName('${namePrefix}-postgres', postgresSe // //wal_level: 'logical' // //max_worker_processes: '16' -// // The leading theory is that we are using pgoutput as the replication protocol -// // which comes out of the box in postgresql. Therefore we may not need the +// // The leading theory is that we are using pgoutput as the replication protocol +// // which comes out of the box in postgresql. Therefore we may not need the // // following two lines. // //'azure.extensions': 'pglogical' // //shared_preload_libraries: 'pglogical'