variable "aws_region" {
  type        = string
  default     = "us-east-1"
  description = "The AWS region"
}

variable "environment" {
  type        = string
  default     = "backup"
  description = "The environment"
}

variable "service_name" {
  type        = string
  default     = "quartz-shield"
  description = "The name of the service"
}

variable "application_family" {
  type        = string
  default     = "devops"
  description = "The name of the application family"
}

