variable "aws_profile" {
  type        = string
  description = "The name of the AWS profile as set in the shared credentials file."
  default     = "gdb-delphi-prod"
}

variable "aws_region_id" {
  type        = string
  description = "The id of the region in AWS"
  default     = "us-east-1"
}

variable "aws_shared_credentials_file" {
  type        = string
  description = "The path to a shared credentials file"
  default     = "~/.aws/credentials"
}

variable "gcp_region_id" {
  type        = string
  description = "The id of the region in AWS"
  default     = "us-east4"
}

variable "platform" {
  type = map(string)

  default = {
    name                = "Delphi"
    prefix              = "prod"
    environment         = "Production"
    short_platform_name = "DLP"
  }
}

variable "datadog_api_key" {
  type        = string
  description = "Datadog API key"
}
