Skip to content

Commit 3e307df

Browse files
committed
Fix missing LB rule
1 parent 0e01835 commit 3e307df

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

deploy/devops/tf-env/oke.tf

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,8 @@ resource "oci_core_security_list" "pub_lb_sl" {
2222
source_type = "CIDR_BLOCK"
2323
description = "Allow HTTP for all load balancers"
2424
tcp_options {
25-
destination_port_range {
26-
max = 80
27-
min = 80
28-
}
25+
max = 80
26+
min = 80
2927
}
3028
}
3129
egress_security_rules {
@@ -34,10 +32,8 @@ resource "oci_core_security_list" "pub_lb_sl" {
3432
destination_type = "CIDR_BLOCK"
3533
description = "Allow OCI load balancer or network load balancer to communicate with kube-proxy on worker nodes."
3634
tcp_options {
37-
destination_port_range {
38-
max = 10256
39-
min = 10256
40-
}
35+
max = 10256
36+
min = 10256
4137
}
4238
}
4339
}

0 commit comments

Comments
 (0)