Skip to content

Commit

Permalink
removed legacy references to inline_fqdn_rules, updated allowlist (#5134
Browse files Browse the repository at this point in the history
)
  • Loading branch information
dms1981 authored Oct 3, 2023
1 parent cd5f566 commit c889b73
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
".ubuntu.com",
".docker.io",
".docker.com",
".ghcr.io"
".ghcr.io",
".amazontrust.com"
],
"fw_home_net_ips": ["10.26.0.0/16", "10.27.0.0/16"]
}

This file was deleted.

1 change: 0 additions & 1 deletion terraform/environments/core-network-services/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ locals {
production_rules = fileexists("./firewall-rules/production_rules.json") ? jsondecode(templatefile("./firewall-rules/production_rules.json", local.all_cidr_ranges)) : {}
fqdn_firewall_rules = fileexists("./firewall-rules/fqdn_rules.json") ? jsondecode(file("./firewall-rules/fqdn_rules.json")) : {}
inline_firewall_rules = fileexists("./firewall-rules/inline_rules.json") ? jsondecode(templatefile("./firewall-rules/inline_rules.json", local.all_cidr_ranges)) : {}
inline_fqdn_rules = fileexists("./firewall-rules/inline_fqdn_rules.json") ? jsondecode(file("./firewall-rules/inline_fqdn_rules.json")) : {}
firewall_rules = merge(local.development_rules, local.test_rules, local.preproduction_rules, local.production_rules)

vpn_attachments = fileexists("./vpn_attachments.json") ? jsondecode(file("./vpn_attachments.json")) : {}
Expand Down

0 comments on commit c889b73

Please sign in to comment.