Merge pull request #1270 from robgil-dds/169163334-ssl-vpn

169163334 - Adds Virtual Network Gateway for VPN
This commit is contained in:
dandds
2019-12-20 10:22:27 -05:00
committed by GitHub
4 changed files with 62 additions and 8 deletions

View File

@@ -36,6 +36,12 @@ variable "networks" {
}
}
variable "gateway_subnet" {
type = string
default = "10.1.20.0/24"
}
variable "route_tables" {
description = "Route tables and their default routes"
type = map

View File

@@ -4,6 +4,7 @@ module "vpc" {
region = var.region
virtual_network = var.virtual_network
networks = var.networks
gateway_subnet = var.gateway_subnet
route_tables = var.route_tables
owner = var.owner
name = var.name