22 lines
481 B
Terraform
22 lines
481 B
Terraform
variable "name" {
|
|
description = "The name of the VPN Gateway."
|
|
type = string
|
|
}
|
|
|
|
variable "network_name" {
|
|
description = "The name of the network."
|
|
type = string
|
|
}
|
|
|
|
variable "region" {
|
|
description = "The region of the VPN Gateway."
|
|
type = string
|
|
}
|
|
|
|
variable "vpn_external_ip" {
|
|
description = "External IP address for the VPN gateway. If not provided, a new IP will be allocated."
|
|
type = string
|
|
nullable = true
|
|
default = null
|
|
}
|