22 lines
451 B
Terraform
22 lines
451 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 = "The name of the external IP address of the VPN Gateway."
|
|
type = string
|
|
nullable = true
|
|
default = null
|
|
}
|