/** * Copyright 2022 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. */ # tfdoc:file:description VPN between landing and production spoke in ew1. # local.vpn_spoke_bgp_peer_options is defined in the dev VPN file moved { from = module.landing-to-prod-ew1-vpn to = module.landing-to-prod-primary-vpn } module "landing-to-prod-primary-vpn" { source = "../../../modules/net-vpn-ha" project_id = module.landing-project.project_id network = module.landing-vpc.self_link region = var.regions.primary name = "vpn-to-prod-${local.region_shortnames[var.regions.primary]}" router_config = { name = "landing-vpn-${local.region_shortnames[var.regions.primary]}" asn = var.router_spoke_configs.landing-primary.asn } peer_gateway = { gcp = module.prod-to-landing-primary-vpn.self_link } tunnels = { 0 = { bgp_peer = { address = cidrhost("169.254.0.64/27", 1) asn = var.router_spoke_configs.spoke-prod-primary.asn } bgp_peer_options = local.vpn_spoke_bgp_peer_options.landing-primary bgp_session_range = "${ cidrhost("169.254.0.64/27", 2) }/30" vpn_gateway_interface = 0 } 1 = { bgp_peer = { address = cidrhost("169.254.0.64/27", 5) asn = var.router_spoke_configs.spoke-prod-primary.asn } bgp_peer_options = local.vpn_spoke_bgp_peer_options.landing-primary bgp_session_range = "${ cidrhost("169.254.0.64/27", 6) }/30" vpn_gateway_interface = 1 } } } moved { from = module.prod-to-landing-ew1-vpn to = module.prod-to-landing-primary-vpn } module "prod-to-landing-primary-vpn" { source = "../../../modules/net-vpn-ha" project_id = module.prod-spoke-project.project_id network = module.prod-spoke-vpc.self_link region = var.regions.primary name = "vpn-to-landing-${local.region_shortnames[var.regions.primary]}" router_config = { name = "prod-spoke-vpn-${local.region_shortnames[var.regions.primary]}" asn = var.router_spoke_configs.spoke-prod-primary.asn } peer_gateway = { gcp = module.landing-to-prod-primary-vpn.self_link } tunnels = { 0 = { bgp_peer = { address = cidrhost("169.254.0.64/27", 2) asn = var.router_spoke_configs.landing-primary.asn } bgp_peer_options = local.vpn_spoke_bgp_peer_options.prod-primary bgp_session_range = "${ cidrhost("169.254.0.64/27", 1) }/30" shared_secret = module.landing-to-prod-primary-vpn.random_secret vpn_gateway_interface = 0 } 1 = { bgp_peer = { address = cidrhost("169.254.0.64/27", 6) asn = var.router_spoke_configs.landing-primary.asn } bgp_peer_options = local.vpn_spoke_bgp_peer_options.prod-primary bgp_session_range = "${ cidrhost("169.254.0.64/27", 5) }/30" shared_secret = module.landing-to-prod-primary-vpn.random_secret vpn_gateway_interface = 1 } } }