Added VPN GW and Tunnel modules.

This commit is contained in:
2025-03-31 15:56:06 +02:00
parent 5b0c5d33eb
commit c878380f33
7 changed files with 179 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
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
}