variable "environment" {
    description = "Available values:  dev, qa, prod."
    default     = "qa"
}

variable "region" {
    default = "us-east-1"
}

variable "application_family" {
  type        = string
  description = "Name of application family"
  default     = "vector"
}

variable "service_name" {
  default     = "lambda-vector-renew-manager"
}

variable "LOGGER_DSN" {
    description = "DSN for logging."
    default     = "udp://qa-fluentd-applications-udp.theorchard.io:5160"
}
