Skip to content

Commit a8b3c54

Browse files
committed
Fix missing LB rule
1 parent 1243dc3 commit a8b3c54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy/devops/tf-env/oke.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module "oke" {
5757
allow_rules_public_lb ={
5858
"Allow TCP ingress to public load balancers for SSL traffic from anywhere" : { protocol = 6, port = 443, source="0.0.0.0/0", source_type="CIDR_BLOCK"},
5959
"Allow TCP ingress to public load balancers for HTTP traffic from anywhere" : { protocol = 6, port = 80, source="0.0.0.0/0", source_type="CIDR_BLOCK"},
60-
"Allow TCP egress from public load balancers to worker nodes for health checks" : {protocol = 6, port=-1, destination = "10.22.144.0/20", destination_type="CIDR_BLOCK"}
60+
"Allow TCP egress from public load balancers to worker nodes for health checks" : {protocol = 6, port=-1, source = "10.22.144.0/20", source_type="CIDR_BLOCK"}
6161
}
6262
# Network module - security
6363
allow_node_port_access = true

0 commit comments

Comments
 (0)