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

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

variable "public_subnet_ids" {
  type        = list(string)
  description = "List of public subnets where NAT gateways will be created"
}

