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

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

variable "application_family" {
  description = "The application family of the resource. E.g. data-platform, identity, etc."
  type        = string
  default     = "devops"
}

variable "service_name" {
  description = "The name of the service. E.g. terraform-airflow, terraform-iam, etc."
  type        = string
  default     = "terraform-airflow-test"
}

variable "team_name" {
  description = "The name of the Datadog team responsible for the resource."
  type        = string
  default     = "devops"
}
