22 lines
403 B
HCL

# Global Terraform
variable "environment" {
description = "Architecture Environment"
type = "string"
}
# Global DataDog
variable "evaluation_delay" {
description = "Delay in seconds for the metric evaluation"
default = 15
}
variable "message" {
description = "Message sent when an alert is triggered"
}
# Nginx Middleware specific
variable "dd_nginx" {
default = "disabled"
}