variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

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

variable "domain_name" {
  description = "Name of domain"
  default     = "theorchard.com"
}

variable "service_name" {
  default = "orcd"
}

variable "service_name_suffix" {
  default = "collaborator-suite"
}

variable "application_family" {
  description = "Application family of which this is a component. Used for tagging"
  default     = "collaborators"
}

variable "datadog_sourcemaps_api_key_secret_name" {
  description = "Name of the secret containing the Datadog API key for uploading sourcemaps"
  default     = "DATADOG_SOURCEMAPS_API_KEY"
}
