Skip to content

Commit

Permalink
TM-860: nomis: temporarily increase web disk space alarm threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
drobinson-moj committed Jan 8, 2025
1 parent 2221e67 commit bb1398c
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,15 @@ locals {
module.baseline_presets.cloudwatch_metric_alarms.ec2_cwagent_linux,
module.baseline_presets.cloudwatch_metric_alarms.ec2_instance_cwagent_collectd_service_status_os,
module.baseline_presets.cloudwatch_metric_alarms.ec2_instance_cwagent_collectd_service_status_app,
local.environment == "production" ? {
free-disk-space-low = merge(module.baseline_presets.cloudwatch_metric_alarms.ec2_cwagent_linux["free-disk-space-low"], {
threshold = "90"
})
} : {
free-disk-space-low = merge(module.baseline_presets.cloudwatch_metric_alarms.ec2_cwagent_linux["free-disk-space-low"], {
threshold = "85"
})
}
)

xtag = merge(
Expand Down

0 comments on commit bb1398c

Please sign in to comment.