Skip to content

Commit

Permalink
EES-5686 - responding to PR comments. Renamed PSQL alerts subfolder t…
Browse files Browse the repository at this point in the history
…o better reflext usage.
  • Loading branch information
duncan-at-hiveit committed Dec 31, 2024
1 parent 26ab4b7 commit 36a2cb5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ resource adminRoleAssignments 'Microsoft.DBforPostgreSQL/flexibleServers/adminis
]
}]

module databaseAliveAlert 'alerts/flexibleServers/databaseAlive.bicep' = if (alerts != null && alerts!.availability) {
module databaseAliveAlert 'alerts/postgreSqlFlexibleServers/databaseAlive.bicep' = if (alerts != null && alerts!.availability) {
name: '${databaseServerName}DbAliveDeploy'
params: {
resourceNames: [databaseServerName]
Expand All @@ -153,7 +153,7 @@ module databaseAliveAlert 'alerts/flexibleServers/databaseAlive.bicep' = if (ale
}
}

module queryTimeAlert 'alerts/flexibleServers/queryTimeAlert.bicep' = if (alerts != null && alerts!.queryTime) {
module queryTimeAlert 'alerts/postgreSqlFlexibleServers/queryTimeAlert.bicep' = if (alerts != null && alerts!.queryTime) {
name: '${databaseServerName}QueryTimeDeploy'
params: {
resourceNames: [databaseServerName]
Expand All @@ -162,7 +162,7 @@ module queryTimeAlert 'alerts/flexibleServers/queryTimeAlert.bicep' = if (alerts
}
}

module transactionTimeAlert 'alerts/flexibleServers/transactionTimeAlert.bicep' = if (alerts != null && alerts!.transactionTime) {
module transactionTimeAlert 'alerts/postgreSqlFlexibleServers/transactionTimeAlert.bicep' = if (alerts != null && alerts!.transactionTime) {
name: '${databaseServerName}TransactionTimeDeploy'
params: {
resourceNames: [databaseServerName]
Expand Down

0 comments on commit 36a2cb5

Please sign in to comment.