variable "name_prefix" {
  type        = string
  description = "The prefix name of the objects"
  default     = "dev-"
}

variable "common_tags" {
  type        = map(string)
  description = "Common tags to add for the objects"
  default = {
    Environment = "Development"
  }
}

variable "vpc_id" {
  type        = string
  description = "The VPC ID."
}

variable "offices_ip_addr" {
  type        = list(object({ cidr = string, description = string }))
  description = "list of offices ip addresses with description"
  default = [
    { cidr = "4.15.150.133/32", description = "SME US" },
    { cidr = "4.15.150.129/32", description = "SME NYC US" },
    { cidr = "91.220.204.201/32", description = "DA Kharkiv2" },
    { cidr = "91.247.221.48/28", description = "DA Kharkiv" },
    { cidr = "38.112.5.54/32", description = "DA NYC" },
    { cidr = "91.234.37.48/28", description = "DA Kyiv" }
  ]
}
