Skip to content

Commit

Permalink
fix: network acl fix for source port max (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
argeiger authored Oct 6, 2022
1 parent 97ccfa3 commit 002ea98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)

This module creates the following IBM Cloud® Virtual Private Cloud (VPC) network components:

- VPC
- Public gateways
- Subnets
Expand Down
4 changes: 2 additions & 2 deletions network_acls.tf
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ resource "ibm_is_network_acl" "network_acl" {
port_min = lookup(rules.value.tcp, "port_min", null)
port_max = lookup(rules.value.tcp, "port_max", null)
source_port_min = lookup(rules.value.tcp, "source_port_min", null)
source_port_max = lookup(rules.value.tcp, "source_port_min", null)
source_port_max = lookup(rules.value.tcp, "source_port_max", null)
}
}

Expand All @@ -182,7 +182,7 @@ resource "ibm_is_network_acl" "network_acl" {
port_min = lookup(rules.value.udp, "port_min", null)
port_max = lookup(rules.value.udp, "port_max", null)
source_port_min = lookup(rules.value.udp, "source_port_min", null)
source_port_max = lookup(rules.value.udp, "source_port_min", null)
source_port_max = lookup(rules.value.udp, "source_port_max", null)
}
}

Expand Down

0 comments on commit 002ea98

Please sign in to comment.