/** * 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. */ locals { router = ( var.router_create ? try(google_compute_router.router[0].name, null) : var.router_name ) vlan_interconnect = try(google_compute_interconnect_attachment.interconnect_vlan_attachment.name) } resource "google_compute_router" "router" { count = var.router_create ? 1 : 0 project = var.project_id region = var.region name = var.router_name == "" ? "router-${var.name}" : var.router_name description = var.router_config.description network = var.router_network bgp { advertise_mode = ( var.router_config.advertise_config == null ? null : var.router_config.advertise_config.mode ) advertised_groups = ( var.router_config.advertise_config == null ? null : ( var.router_config.advertise_config.mode != "CUSTOM" ? null : var.router_config.advertise_config.groups ) ) dynamic "advertised_ip_ranges" { for_each = ( var.router_config.advertise_config == null ? {} : ( var.router_config.advertise_config.mode != "CUSTOM" ? null : var.router_config.advertise_config.ip_ranges ) ) iterator = range content { range = range.key description = range.value } } asn = var.router_config.asn } } resource "google_compute_interconnect_attachment" "interconnect_vlan_attachment" { project = var.project_id region = var.region router = local.router name = var.name description = var.config.description interconnect = var.interconnect bandwidth = var.config.bandwidth mtu = var.config.mtu vlan_tag8021q = var.config.vlan_id candidate_subnets = var.bgp == null ? null : var.bgp.candidate_ip_ranges admin_enabled = var.config.admin_enabled provider = google-beta } resource "google_compute_router_interface" "interface" { project = var.project_id region = var.region name = "interface-${var.name}" router = local.router ip_range = var.bgp == null ? null : var.bgp.session_range interconnect_attachment = local.vlan_interconnect } resource "google_compute_router_peer" "peer" { project = var.project_id region = var.region name = "bgp-session-${var.name}" router = local.router peer_ip_address = var.peer.ip_address peer_asn = var.peer.asn advertised_route_priority = var.bgp == null ? null : var.bgp.advertised_route_priority interface = local.vlan_interconnect }