variable "environment" {
  default = "networking"
}

variable "application_family" {
  default = "devops"
}

variable "team_name" {
  default = "devops"
}

variable "vpc_id" {
  description = "The ID of the VPC to manage the transit gateway attachment for"
  default     = "vpc-065d82d66997cbcbb"
}

variable "vpc_name" {
  description = "The name of the VPC"
  default     = "gdb-delphi-dev-qa-delphi"
}

variable "managed_prefix_list_vpn_references" {
  description = "A map of prefix list names to VPN names to create routes for in the attachment's route table"
  default = {
    vpn-ny                   = "ny"                       # ny vpn
    vpn-sme-internal-primary = "vpn-sme-internal-primary" # gp.sonymusic.com
  }
}

variable "managed_prefix_list_vpc_references" {
  description = "A map of prefix list names to VPC names to create routes for in the attachment's route table"
  default     = {}
}

variable "vpc_routes" {
  description = "A map of CIDR blocks to VPC names to create routes for in the attachment's route table"
  default = {
    "10.12.215.224/27" = "grps-prod" # GRPS PROD GRPS-P1-IAPP-1B subnet
  }
}
