From df789db9bd0de0d3bfbd2cdd9d6a9380f9134a2f Mon Sep 17 00:00:00 2001 From: ajlopezn Date: Tue, 11 Apr 2023 21:59:36 +0000 Subject: [PATCH] updated spaces --- modules/net-vpc-firewall/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/net-vpc-firewall/README.md b/modules/net-vpc-firewall/README.md index 9036a6bc0..a393a6614 100644 --- a/modules/net-vpc-firewall/README.md +++ b/modules/net-vpc-firewall/README.md @@ -150,15 +150,15 @@ module "firewall" { } egress_rules = { deny-egress-source-destination-ranges = { - description = "Deny egress using source and destination ranges" - source_ranges = ["10.132.0.0/20", "10.138.0.0/20"] + description = "Deny egress using source and destination ranges" + source_ranges = ["10.132.0.0/20", "10.138.0.0/20"] destination_ranges = ["172.16.0.0/12"] } } ingress_rules = { allow-ingress-source-destination-ranges = { - description = "Allow ingress using source and destination ranges" - source_ranges = ["172.16.0.0/12"] + description = "Allow ingress using source and destination ranges" + source_ranges = ["172.16.0.0/12"] destination_ranges = ["10.132.0.0/20", "10.138.0.0/20"] } }