variable "environment" {
  type = string
}

variable "vpc_id" {
  description = "The ID of the VPC"
  type        = string
}

variable "routes" {
  description = "A map of CIDR blocks to transit gateway attachment IDs to configure routes for in the VPC attachment's route table"
  type        = map(string)
  default     = {}
}

variable "managed_prefix_list_references" {
  description = "A map of managed prefix list IDs to transit gateway attachment IDs to configure routes for in the VPC attachment's route table"
  type        = map(string)
  default     = {}
}
