variable "aws_region" {
  type        = string
  default     = "us-east-1"
  description = "The AWS region to create the repository in"
}

variable "application_family" {
  description = "Name of application family"
  default     = "devops"
}

variable "environment" {
  default = "networking"
}

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

variable "vpc_name" {
  description = "The name of the VPC"
  default     = "mobile-code-push-prod"
}

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 = {
    shared-orcd-private-subnet-prefix-list = "shared"
  }
}

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"
    vpn-sme-internal-primary = "vpn-sme-internal-primary"
  }
}

variable "managed_prefix_list_transit_gateway_peering_references" {
  type = map(string)
  description = "A map of prefix list names to transit gateway peering attachment names to create routes for in the attachment's route table"
  default = {
    "sme-infosec-vm-network"   = "networking-sme-internal-transit-gateway-peering-attachment"
  }
}
