* Add override_name optional variable * Add override name optional variable * Allow override for each forwarding rule * Add optional override_name variable to forwarding_rules_config * Remove duplicate (unused) variable override_name * Add optional override_name variable for network peering * Add optional override_name variable for network peering * Formatting * Update VPN tunnel interface name handling for override * Update bgp peer handling for override * Added renaming for both sides of peering * Fix precondition * Remove spurious folders * Apply suggestions to peering module * Use coalesce and name (instead of override_name) * remove unneeded null * Revert windows style slashes in readme * Fix more null checks * Fix unneeded null checks in net-lb-int * Change override_name back to name in the rest of the locations, bgppeer, tunnel and interface names * Fix linter * Update READMEs --------- Co-authored-by: Ludovico Magnocavallo <ludomagno@google.com> Co-authored-by: unknown <jack@JACK-PC.lfn.arpa> Co-authored-by: jacklever-hub24 <jack.lever@hub24.com.au> Co-authored-by: Julio Castillo <jccb@google.com>
125 lines
3.8 KiB
HCL
125 lines
3.8 KiB
HCL
/**
|
|
* Copyright 2024 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
variable "name" {
|
|
description = "VPN Gateway name (if an existing VPN Gateway is not used), and prefix used for dependent resources."
|
|
type = string
|
|
}
|
|
|
|
variable "network" {
|
|
description = "VPC used for the gateway and routes."
|
|
type = string
|
|
}
|
|
|
|
variable "peer_gateways" {
|
|
description = "Configuration of the (external or GCP) peer gateway."
|
|
type = map(object({
|
|
external = optional(object({
|
|
redundancy_type = string
|
|
interfaces = list(string)
|
|
description = optional(string, "Terraform managed external VPN gateway")
|
|
name = optional(string)
|
|
}))
|
|
gcp = optional(string)
|
|
}))
|
|
nullable = false
|
|
default = {}
|
|
validation {
|
|
condition = alltrue([
|
|
for k, v in var.peer_gateways : (v.external != null) != (v.gcp != null)
|
|
])
|
|
error_message = "Peer gateway configuration must define exactly one between `external` and `gcp`."
|
|
}
|
|
}
|
|
|
|
variable "project_id" {
|
|
description = "Project where resources will be created."
|
|
type = string
|
|
}
|
|
|
|
variable "region" {
|
|
description = "Region used for resources."
|
|
type = string
|
|
}
|
|
|
|
variable "router_config" {
|
|
description = "Cloud Router configuration for the VPN. If you want to reuse an existing router, set create to false and use name to specify the desired router."
|
|
type = object({
|
|
asn = number
|
|
create = optional(bool, true)
|
|
custom_advertise = optional(object({
|
|
all_subnets = bool
|
|
ip_ranges = map(string)
|
|
}))
|
|
keepalive = optional(number)
|
|
name = optional(string)
|
|
override_name = optional(string)
|
|
})
|
|
nullable = false
|
|
}
|
|
|
|
variable "tunnels" {
|
|
description = "VPN tunnel configurations."
|
|
type = map(object({
|
|
bgp_peer = object({
|
|
address = string
|
|
asn = number
|
|
route_priority = optional(number, 1000)
|
|
custom_advertise = optional(object({
|
|
all_subnets = bool
|
|
ip_ranges = map(string)
|
|
}))
|
|
md5_authentication_key = optional(object({
|
|
name = string
|
|
key = string
|
|
}))
|
|
ipv6 = optional(object({
|
|
nexthop_address = optional(string)
|
|
peer_nexthop_address = optional(string)
|
|
}))
|
|
name = optional(string)
|
|
})
|
|
# each BGP session on the same Cloud Router must use a unique /30 CIDR
|
|
# from the 169.254.0.0/16 block.
|
|
bgp_session_range = string
|
|
ike_version = optional(number, 2)
|
|
name = optional(string)
|
|
peer_external_gateway_interface = optional(number)
|
|
peer_router_interface_name = optional(string)
|
|
peer_gateway = optional(string, "default")
|
|
router = optional(string)
|
|
shared_secret = optional(string)
|
|
vpn_gateway_interface = number
|
|
}))
|
|
default = {}
|
|
nullable = false
|
|
}
|
|
|
|
variable "vpn_gateway" {
|
|
description = "HA VPN Gateway Self Link for using an existing HA VPN Gateway. Ignored if `vpn_gateway_create` is set to `true`."
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "vpn_gateway_create" {
|
|
description = "Create HA VPN Gateway. Set to null to avoid creation."
|
|
type = object({
|
|
description = optional(string, "Terraform managed external VPN gateway")
|
|
ipv6 = optional(bool, false)
|
|
})
|
|
default = {}
|
|
}
|