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

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

variable "service_name" {
  default = "test-kitchen"
}

variable "application_family" {
  default = "devops"
}

variable "devops_vpn_cidr_blocks" {
  description = "CIDR blocks for DevOps VPN networks"
  type        = list(string)

  default = [
    "192.168.32.0/24",
    "192.168.36.0/28",
  ]
}

variable "ssh_ingress_cidr_blocks" {
  description = "CIDR blocks from which to allow SSH"
  type        = list(string)

  default = [
    "10.30.0.0/22",
    "10.100.2.190/32",
    "192.168.32.0/24",
    "192.168.36.0/28",
    "192.168.40.0/22",
  ]
}
