Files
hunfabric/modules/net-vpc-firewall/default-rules.tf
Ludovico Magnocavallo 7c920d7d35 Add support for context to net-lb-int net-vpc-firewall and net-vpc module (#3419)
* net-lb-int

* net-vpc-firewall

* net-vpc

* net-vpc
2025-10-16 05:54:14 +00:00

86 lines
2.8 KiB
HCL

/**
* 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 Optional default rule resources.
locals {
default_rules = {
for k, v in var.default_rules_config :
k => var.default_rules_config.disabled == true || v == null ? [] : v
if k != "disabled"
}
}
resource "google_compute_firewall" "allow-admins" {
count = length(local.default_rules.admin_ranges) > 0 ? 1 : 0
project = local.project_id
network = local.network
name = "${local.network_name}-ingress-admins"
description = "Access from the admin subnet to all subnets."
source_ranges = [
for r in local.default_rules.admin_ranges : lookup(local.ctx.cidr_ranges, r, r)
]
allow { protocol = "all" }
}
resource "google_compute_firewall" "allow-tag-http" {
count = length(local.default_rules.http_ranges) > 0 ? 1 : 0
project = local.project_id
network = local.network
name = "${local.network_name}-ingress-tag-http"
description = "Allow http to machines with matching tags."
source_ranges = [
for r in local.default_rules.http_ranges : lookup(local.ctx.cidr_ranges, r, r)
]
target_tags = local.default_rules.http_tags
allow {
protocol = "tcp"
ports = ["80"]
}
}
resource "google_compute_firewall" "allow-tag-https" {
count = length(local.default_rules.https_ranges) > 0 ? 1 : 0
project = local.project_id
network = local.network
name = "${local.network_name}-ingress-tag-https"
description = "Allow http to machines with matching tags."
source_ranges = [
for r in local.default_rules.https_ranges : lookup(local.ctx.cidr_ranges, r, r)
]
target_tags = local.default_rules.https_tags
allow {
protocol = "tcp"
ports = ["443"]
}
}
resource "google_compute_firewall" "allow-tag-ssh" {
count = length(local.default_rules.ssh_ranges) > 0 ? 1 : 0
project = local.project_id
network = local.network
name = "${local.network_name}-ingress-tag-ssh"
description = "Allow SSH to machines with matching tags."
source_ranges = [
for r in local.default_rules.ssh_ranges : lookup(local.ctx.cidr_ranges, r, r)
]
target_tags = local.default_rules.ssh_tags
allow {
protocol = "tcp"
ports = ["22"]
}
}