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

variable "service_name" {
  default = "split-synchronizer"
}

variable "environment" {
  default = "prod"
}

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

variable "team_name" {
  description = "Name of the team that owns this service. Used for tagging"
  type        = string
  default     = "devops"
}
