/** * 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. */ module "gw" { source = "../../../modules/compute-vm" for_each = local.zones project_id = module.project.project_id zone = each.value name = "${var.prefix}-gw-${each.key}" instance_type = "f1-micro" boot_disk = { image = "projects/ubuntu-os-cloud/global/images/family/ubuntu-2004-lts", type = "pd-ssd", size = 10 } network_interfaces = [ { network = module.vpc-left.self_link subnetwork = values(module.vpc-left.subnet_self_links)[0], nat = false, addresses = null }, { network = module.vpc-right.self_link subnetwork = values(module.vpc-right.subnet_self_links)[0], nat = false, addresses = null } ] tags = ["ssh"] can_ip_forward = true metadata = { user-data = templatefile("${path.module}/assets/gw.yaml", { gw_right = cidrhost(var.ip_ranges.right, 1) ip_cidr_right = var.ip_ranges.right }) } service_account = try( module.service-accounts.emails["${var.prefix}-gce-vm"], null ) service_account_scopes = ["https://www.googleapis.com/auth/cloud-platform"] group = { named_ports = null } } module "ilb-left" { source = "../../../modules/net-ilb" project_id = module.project.project_id region = var.region name = "${var.prefix}-ilb-left" vpc_config = { network = module.vpc-left.self_link subnetwork = values(module.vpc-left.subnet_self_links)[0] } address = local.addresses.ilb-left backend_service_config = { session_affinity = var.ilb_session_affinity } backends = [for z, mod in module.gw : { group = mod.group.self_link }] health_check_config = { enable_logging = true tcp = { port = 22 } } } module "ilb-right" { source = "../../../modules/net-ilb" project_id = module.project.project_id region = var.region name = "${var.prefix}-ilb-right" vpc_config = { network = module.vpc-right.self_link subnetwork = values(module.vpc-right.subnet_self_links)[0] } address = local.addresses.ilb-right backend_service_config = { session_affinity = var.ilb_session_affinity } backends = [for z, mod in module.gw : { group = mod.group.self_link }] health_check_config = { enable_logging = true tcp = { port = 22 } } }