variable "environment" {
  description = "Name of the environment, e.g. dev, qa, prod"
  default     = "dev"
}

variable "sg_cidr_blocks" {
  description = "Ingress cidr block to the instances"
  type        = list(string)

  default = [
    "192.168.32.0/24",
    "192.168.33.0/24",
    "192.168.36.0/28",
    "192.168.40.0/22",
    "10.30.0.0/22",
    "10.40.0.0/22",
    "10.141.0.0/29",
  ]
}
