Skip to content

Commit

Permalink
fix: network acl fix for source port max
Browse files Browse the repository at this point in the history
  • Loading branch information
argeiger authored Oct 4, 2022
1 parent 3eb4c03 commit 255871f
Showing 1 changed file with 2 additions and 2 deletions.
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 255871f

Please sign in to comment.