variable "env_prefix" {
  type        = string
  description = "Prefix of the environment, lowercased"
}

variable "project_group" {
  type        = string
  description = "Project group name, lowercased"
}

variable "ip_set" {
  type = list(object({
    type  = string
    value = string
  }))
  description = "List of ip sets"
}

variable "default_action" {
  type        = string
  default     = "BLOCK"
  description = "Default action for WAF Web ACL"
}

variable "rules_action" {
  type        = string
  default     = "ALLOW"
  description = "Rules action for WAF Web ACL"
}
