Skip to content

Commit

Permalink
Add openshiftsdn port security rule
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bastide <[email protected]>
  • Loading branch information
prb112 committed Oct 10, 2023
1 parent 3d3db26 commit 151e144
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions modules/1_vpc_prepare/security_groups.tf
Original file line number Diff line number Diff line change
Expand Up @@ -337,4 +337,14 @@ resource "ibm_is_security_group_rule" "openshift_net_sg_10250_out" {
port_min = 10250
port_max = 10250
}
}

resource "ibm_is_security_group_rule" "openshift_net_sg_4500" {
group = ibm_is_security_group.worker_vm_sg.id
direction = "inbound"
remote = var.powervs_machine_cidr
udp {
port_min = 4500
port_max = 4500
}
}

0 comments on commit 151e144

Please sign in to comment.