Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add D4ads_v5 to accepted SKU values #1452

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .azure/modules/postgreSql/create.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}

Expand Down Expand Up @@ -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'
Expand Down
Loading