variable "aws_region" {
  description = "AWS region."
  type        = string
  default     = "eu-central-1"
}

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

variable "application_family" {
  default = "devops"
  type    = string
}

variable "cost_threshold_absolute" {
  default = "100"
}

variable "cost_threshold_percentage" {
  default = "20"
}
