variable "region" {
  description = "The AWS resources region"
  default     = "us-east-1"
}

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

variable "service_name" {
  description = "The name of the associated application."
  default     = "product-store-eligibility-check"
}

variable "application_family" {
  description = "Application family of which this is a component. Used for tagging"
  default     = "vector"
}
