diff --git a/.azure/modules/postgreSql/create.bicep b/.azure/modules/postgreSql/create.bicep index 19bc3e0bf..1b9882240 100644 --- a/.azure/modules/postgreSql/create.bicep +++ b/.azure/modules/postgreSql/create.bicep @@ -65,19 +65,6 @@ var databaseName = 'dialogporten' var postgresServerNameMaxLength = 63 var postgresServerName = uniqueResourceName('${namePrefix}-postgres', postgresServerNameMaxLength) -// Uncomment the following lines to add logical replication. -// see https://learn.microsoft.com/en-us/azure/postgresql/flexible-server/concepts-logical#pre-requisites-for-logical-replication-and-logical-decoding -//var postgresqlConfiguration = { -// //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 -// // following two lines. -// //'azure.extensions': 'pglogical' -// //shared_preload_libraries: 'pglogical' -//} - module saveAdmPassword '../keyvault/upsertSecret.bicep' = { name: 'Save_${srcKeyVaultAdministratorLoginPasswordKey}' scope: resourceGroup(srcKeyVault.subscriptionId, srcKeyVault.resourceGroupName)