38 lines
875 B
HCL
38 lines
875 B
HCL
# Global Terraform
|
|
variable "environment" {
|
|
description = "Architecture Environment"
|
|
type = "string"
|
|
}
|
|
|
|
# Global DataDog
|
|
variable "delay" {
|
|
description = "Delay in seconds for the metric evaluation"
|
|
default = 15
|
|
}
|
|
|
|
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 = "*"
|
|
}
|
|
|
|
variable "mongodb_replicaset_silenced" {
|
|
description = "Groups to mute for Mongodb replicaset monitor"
|
|
type = "map"
|
|
default = {}
|
|
}
|
|
|
|
variable "mongodb_replicaset_message" {
|
|
description = "Custom message for Mongodb replicaset monitor"
|
|
type = "string"
|
|
default = ""
|
|
}
|