21 lines
908 B
HCL
21 lines
908 B
HCL
resource "aws_cloudwatch_metric_alarm" "ngw-alarms" {
|
|
for_each = var.settings
|
|
alarm_name = "${each.value["ecccode"]}-NGW_${var.res-id}-${each.value["metric"]}"
|
|
comparison_operator = each.value["comparison_operator"]
|
|
evaluation_periods = each.value["evaluation_periods"]
|
|
metric_name = each.value["metric"]
|
|
period = each.value["period"]
|
|
statistic = each.value["statistic"]
|
|
threshold = each.value["threshold"]
|
|
alarm_description = "NGW:${each.value["metric"]}"
|
|
namespace = "AWS/NATGateway"
|
|
insufficient_data_actions = []
|
|
actions_enabled = var.actions-enabled
|
|
alarm_actions = [each.value["action"]]
|
|
ok_actions = [each.value["action"]]
|
|
dimensions = {
|
|
NatGatewayId = var.res-id
|
|
}
|
|
tags = var.default-tags
|
|
}
|