variable "aws_region" {
  type        = string
  default     = "us-east-1"
  description = "AWS region"
}

variable "environment" {
  type        = string
  description = "Available values: dev, qa, prod."
  default     = "prod"
}

variable "backup_gateway_vpc_endpoint_allowed_ports" {
  type        = list(string)
  description = "List of allowed vpc endpoint ports"
  default = [
    "443",
    "1026",
    "1027",
    "1028",
    "1031",
    "2222",
  ]
}

variable "ingress_cidr_blocks" {
  type        = list(string)
  description = "List of allowed CIDR blocks that can access backup gateway VPC endpoint. Default contains tier0 and tier1 CIDR blocks for ny and avl."
  default = [
    "10.10.40.0/22",
    "10.10.60.0/24",
    "10.40.0.0/22",
    "10.160.0.0/24",
  ]
}

variable "service_name" {
  type    = string
  default = "backup-vmware"
}
