variable "region" { description = "Scaleway region" type = string } variable "zone" { description = "Scaleway zone for the gateway" type = string } variable "project_id" { description = "Scaleway project ID" type = string } variable "private_network_id" { description = "ID of the existing VPC private network to attach the gateway to" type = string } variable "gateway_type" { description = "Public Gateway instance type (VPC-GW-S, VPC-GW-M)" type = string default = "VPC-GW-S" } variable "bastion_enabled" { description = "Enable SSH bastion on the gateway" type = bool default = false }