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

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

variable "environment" {
  type        = string
  description = "The environment of the service"
  default     = "dev"
}

variable "service_name" {
  type        = string
  description = "The name of the service"
  default     = "ows-sdlc-training-ihalas"
}

variable "team_name" {
  type        = string
  description = "The Datadog team handle for resource ownership"
  default     = "osp"
}
