variable "name" {
  type        = string
  description = "Prefix for VPC endpoint resource names"
}

variable "vpc_id" {
  type        = string
  description = "VPC ID to attach the endpoint to"
}

variable "route_table_ids" {
  type        = list(string)
  description = "Route table IDs to associate with the S3 Gateway endpoint"
}

variable "service_tags" {
  type        = map(string)
  description = "Resource tags"
  default     = {}
}
