Skip to content

Commit

Permalink
Merge pull request #21 from terraform-modules/fix-egress
Browse files Browse the repository at this point in the history
v1.1.1: fix web submodule egress
  • Loading branch information
badra001 committed Sep 29, 2021
2 parents 0e44a66 + a7e9510 commit 3c594e4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@

# v1.1.0 -- 20210915
- enable use of ingress_networks and egress_networks for pre-defined port list

# v1.1.1 -- 20210929
- fix default egress to be 0/0 for web submodule
6 changes: 4 additions & 2 deletions web/ports.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ locals {
[8443, 8443, "tcp", "Tomcat-https", local.n_census, ["external"]],
]

ingress_networks = var.ingress_networks
egress_networks = var.egress_networks
# ingress_networks = var.ingress_networks
ingress_networks = []
# egress_networks = var.egress_networks
egress_networks = local.n_all

# these are ignored
ingress_sg = var.ingress_security_groups
Expand Down
2 changes: 1 addition & 1 deletion web/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.1.0"
_module_version = "1.1.1"
}

0 comments on commit 3c594e4

Please sign in to comment.