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

variable "environment" {
  description = "Deployment environment."
  default     = "dev"
}

variable "service_name" {
  description = "The name of the application service."
  default     = "virtual-sales-rep"
}

variable "application_family" {
  description = "Application family used for tagging and IAM."
  default     = "integrations"
}
