variable "name_prefix" {
  type = string
}

variable "vpc_id" {
  type = string
}

variable "tags" {
  type = map(string)
}

variable "alb_arn" {
  type = string
}

variable "public_subnets_ids" {
  type = list(string)
}

variable "security_groups" {
  type = list(string)
}

variable "alb_tg_name" {
  default = "alb-tg"
}

variable "nlb_name" {
  default = "nlb"
}

variable "sg_name" {
  default = "https-from-nlb-eips"
}
