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

variable "environment" {
  type        = string
  description = "The environment"
  default     = "shared"
}

variable "bucket_name" {
  type        = string
  description = "The name of the bucket"
  default     = "datadog-rds-enhanced-monitoring"
}

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

variable "team_name" {
  type        = string
  description = "The name of the team that owns this infrastructure."
  default     = "devops"
}
