variable "application_family" {
  type    = string
  default = "devops"
}

variable "team_name" {
  type    = string
  default = "devops"
}

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

variable "environment" {
  type        = string
  description = "The name of the environment"
  default     = "prod"
}

variable "gcp_service_account_client_email" {
  type        = string
  description = "GCP service account email"
  default     = "datadog-prod@delphi-prod.iam.gserviceaccount.com"
}

