variable "vpc_accepter_cidr" {
  type        = string
  description = "CIDR of requester VPC"
}

variable "connection_name" {
  type        = string
  description = "Name of peering connection"
}

variable "peering_connection_id" {
  type        = string
  description = "ID of peering connection"
}

variable "common_tags" {
  type        = map(string)
  description = "Map of common tags to apply"
  default     = {}
}

variable "allow_remote_vpc_dns_resolution" {
  type        = bool
  description = "Allows remote vpc dns resolution. True by default"
  default     = true
}

variable "accepter_route_tables" {
  type        = list(string)
  description = "List of route tables of requester's vpc to which peering route will be added"
  default     = []
}

variable "acc_to_req_dest_cidrs" {
  type        = list(string)
  description = "List of destination requester cidrs in accepter's route tables"
}
