From dd56fa7e4aa72c9934a8e445966c8a139e341509 Mon Sep 17 00:00:00 2001 From: Duncan Watson Date: Fri, 20 Dec 2024 17:15:23 +0000 Subject: [PATCH] EES-5687 - updated references to renamed folder --- .../public-api/components/postgresqlDatabase.bicep | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/infrastructure/templates/public-api/components/postgresqlDatabase.bicep b/infrastructure/templates/public-api/components/postgresqlDatabase.bicep index d13413ddc5..81cf628698 100644 --- a/infrastructure/templates/public-api/components/postgresqlDatabase.bicep +++ b/infrastructure/templates/public-api/components/postgresqlDatabase.bicep @@ -176,7 +176,7 @@ module transactionTimeAlert 'alerts/postgreSqlFlexibleServers/transactionTimeAle } } -module clientConenctionsWaitingAlert 'alerts/flexibleServers/clientConnectionsWaitingAlert.bicep' = if (alerts != null && alerts!.clientConenctionsWaiting) { +module clientConenctionsWaitingAlert 'alerts/postgreSqlFlexibleServers/clientConnectionsWaitingAlert.bicep' = if (alerts != null && alerts!.clientConenctionsWaiting) { name: '${databaseServerName}ClientConnectionsDeploy' params: { resourceNames: [databaseServerName] @@ -185,7 +185,7 @@ module clientConenctionsWaitingAlert 'alerts/flexibleServers/clientConnectionsWa } } -module cpuPercentageAlert 'alerts/flexibleServers/cpuPercentageAlert.bicep' = if (alerts != null && alerts!.cpuPercentage) { +module cpuPercentageAlert 'alerts/postgreSqlFlexibleServers/cpuPercentageAlert.bicep' = if (alerts != null && alerts!.cpuPercentage) { name: '${databaseServerName}CpuPercentageDeploy' params: { resourceNames: [databaseServerName] @@ -194,7 +194,7 @@ module cpuPercentageAlert 'alerts/flexibleServers/cpuPercentageAlert.bicep' = if } } -module diskBandwidthAlert 'alerts/flexibleServers/diskBandwidthAlert.bicep' = if (alerts != null && alerts!.diskBandwidth) { +module diskBandwidthAlert 'alerts/postgreSqlFlexibleServers/diskBandwidthAlert.bicep' = if (alerts != null && alerts!.diskBandwidth) { name: '${databaseServerName}DiskBandwidthDeploy' params: { resourceNames: [databaseServerName] @@ -203,7 +203,7 @@ module diskBandwidthAlert 'alerts/flexibleServers/diskBandwidthAlert.bicep' = if } } -module diskIopsAlert 'alerts/flexibleServers/diskIopsAlert.bicep' = if (alerts != null && alerts!.diskIops) { +module diskIopsAlert 'alerts/postgreSqlFlexibleServers/diskIopsAlert.bicep' = if (alerts != null && alerts!.diskIops) { name: '${databaseServerName}DiskIopsDeploy' params: { resourceNames: [databaseServerName] @@ -212,7 +212,7 @@ module diskIopsAlert 'alerts/flexibleServers/diskIopsAlert.bicep' = if (alerts ! } } -module memoryPercentageAlert 'alerts/flexibleServers/memoryPercentageAlert.bicep' = if (alerts != null && alerts!.memoryPercentage) { +module memoryPercentageAlert 'alerts/postgreSqlFlexibleServers/memoryPercentageAlert.bicep' = if (alerts != null && alerts!.memoryPercentage) { name: '${databaseServerName}MemoryPercentageDeploy' params: { resourceNames: [databaseServerName]