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

variable "gcp_project_id" {
  type        = string
  description = "Google cloud project ID"
  default     = "delphi-common"
}

variable "platform" {
  type = map(string)

  default = {
    name                = "Delphi"
    prefix              = "common"
    environment         = "Common"
    short_platform_name = "DLP"
  }
}

