variable "application_family" {
  type    = string
  default = "devops"
}

variable "team_name" {
  type    = string
  default = "devops"
}

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

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.37.0/27",
    "192.168.40.0/22",
    "10.30.0.0/22",
  ]
}

