# Global Terraform variable "environment" { description = "Architecture Environment" type = "string" } # Global DataDog variable "delay" { description = "Delay in seconds for the metric evaluation" default = 900 } variable "message" { description = "Message sent when an alert is triggered" } variable "filter_tags_use_defaults" { description = "Use default filter tags convention" default = "true" } variable "filter_tags_custom" { description = "Tags used for custom filtering when filter_tags_use_defaults is false" default = "*" } # redis specific variable "redis_size" { description = "Size of the Elasticache redis instance" type = "string" } variable "cache_hits_silenced" { description = "Groups to mute for Elasticache redis cache hits monitor" type = "map" default = {} } variable "cache_hits_message" { description = "Custom message for Elasticache redis cache hits monitor" type = "string" default = "" } variable "cache_hits_aggregator" { description = "Monitor aggregator for Elasticache redis cache hits [available values: min, max, sum or avg]" type = "string" default = "min" } variable "cache_hits_timeframe" { description = "Monitor timeframe for Elasticache redis cache hits [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`]" default = "last_15m" } variable "cache_hits_threshold_warning" { description = "Elasticache redis cache hits warning threshold in percentage" default = 20 } variable "cache_hits_threshold_critical" { description = "Elasticache redis cache hits critical threshold in percentage" default = 10 } variable "cpu_high_silenced" { description = "Groups to mute for Elasticache redis cpu high monitor" type = "map" default = {} } variable "cpu_high_message" { description = "Custom message for Elasticache redis cpu high monitor" type = "string" default = "" } variable "cpu_high_aggregator" { description = "Monitor aggregator for Elasticache redis cpu high [available values: min, max, sum or avg]" type = "string" default = "min" } variable "cpu_high_timeframe" { description = "Monitor timeframe for Elasticache redis cpu high [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`]" default = "last_15m" } variable "cpu_high_threshold_warning" { description = "Elasticache redis cpu high warning threshold in percentage" default = 75 } variable "cpu_high_threshold_critical" { description = "Elasticache redis cpu high critical threshold in percentage" default = 90 } variable "swap_silenced" { description = "Groups to mute for Elasticache redis swap monitor" type = "map" default = {} } variable "swap_message" { description = "Custom message for Elasticache redis swap monitor" type = "string" default = "" } variable "swap_aggregator" { description = "Monitor aggregator for Elasticache redis swap [available values: min, max, sum or avg]" type = "string" default = "min" } variable "swap_timeframe" { description = "Monitor timeframe for Elasticache redis swap [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`]" default = "last_15m" }