Skip to content

Commit

Permalink
EES-5687 - updated references to renamed folder
Browse files Browse the repository at this point in the history
  • Loading branch information
duncan-at-hiveit committed Dec 20, 2024
1 parent ff4f967 commit dd56fa7
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand All @@ -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]
Expand All @@ -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]
Expand All @@ -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]
Expand Down

0 comments on commit dd56fa7

Please sign in to comment.