Skip to content

Commit

Permalink
v1.1.1: fix egress network default
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Sep 29, 2021
1 parent 0e44a66 commit ad7f43a
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
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 ad7f43a

Please sign in to comment.