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-08cb96679a27d39f4"
}

variable "vpc_name" {
  description = "Unique identifier for the VPC"
  default     = "dx-qa"
}

variable "vpc_routes" {
  description = "A map of CIDR blocks to VPC names to create routes for in the attachment's route table"
  default = {
    "10.11.119.0/25" = "grps-dev"
  }
}
