From 5755f6e7cf3a0bfff7b0b265aa8ba7caa61e9753 Mon Sep 17 00:00:00 2001 From: Julio Castillo Date: Fri, 16 Dec 2022 10:46:24 +0100 Subject: [PATCH] Fix net-vpc factory ranges --- modules/net-vpc-firewall/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/net-vpc-firewall/main.tf b/modules/net-vpc-firewall/main.tf index 708b8844b..a107565e9 100644 --- a/modules/net-vpc-firewall/main.tf +++ b/modules/net-vpc-firewall/main.tf @@ -29,12 +29,12 @@ locals { deny = try(rule.deny, false) rules = try(rule.rules, [{ protocol = "all" }]) description = try(rule.description, null) - destination_ranges = try(rule.destination_ranges, null) + destination_ranges = try(rule.ranges, null) direction = upper(direction) disabled = try(rule.disabled, null) enable_logging = try(rule.enable_logging, null) priority = try(rule.priority, 1000) - source_ranges = try(rule.source_ranges, null) + source_ranges = try(rule.ranges, null) sources = try(rule.sources, null) targets = try(rule.targets, null) use_service_accounts = try(rule.use_service_accounts, false)