variable "vpc_requester_cidr" {
  type        = string
  description = "CIDR of requester VPC"
}
variable "vpc_accepter_cidr" {
  type        = string
  description = "CIDR of requester VPC"
}
variable "connection_name" {
  type        = string
  description = "Name 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 "requester_route_tables" {
  type        = list(string)
  description = "List of route tables of requester's vpc to which peering route will be added. By default all route tables in requester vpc."
  default     = []
}
variable "accepter_route_tables" {
  type        = list(string)
  description = "List of route tables of requester's vpc to which peering route will be added. By default all route tables in accepter vpc."
  default     = []
}
variable "req_to_acc_dest_cidrs" {
  type        = list(string)
  description = "List of destination accepter cidrs in requester's route tables, by default whole accepter cidrs"
  default     = []
}
variable "acc_to_req_dest_cidrs" {
  type        = list(string)
  description = "List of destination requester cidrs in accepter's route tables, by default whole requester cidr"
  default     = []
}
