@@ -66,6 +66,9 @@ locals {
66
66
" Allow TCP ingress to workers from internal load balancers" : {
67
67
protocol = local.tcp_protocol, port_min = local.node_port_min, port_max = local.node_port_max, source = local.int_lb_nsg_id, source_type = local.rule_type_nsg,
68
68
},
69
+ " Allow UDP ingress to workers from internal load balancers" : {
70
+ protocol = local.udp_protocol, port_min = local.node_port_min, port_max = local.node_port_max, source = local.int_lb_nsg_id, source_type = local.rule_type_nsg,
71
+ },
69
72
" Allow TCP ingress to workers for health check from internal load balancers" : {
70
73
protocol = local.tcp_protocol, port = local.health_check_port, source = local.int_lb_nsg_id, source_type = local.rule_type_nsg,
71
74
},
@@ -75,6 +78,9 @@ locals {
75
78
" Allow TCP ingress to workers from public load balancers" : {
76
79
protocol = local.tcp_protocol, port_min = local.node_port_min, port_max = local.node_port_max, source = local.pub_lb_nsg_id, source_type = local.rule_type_nsg,
77
80
},
81
+ " Allow UDP ingress to workers from public load balancers" : {
82
+ protocol = local.udp_protocol, port_min = local.node_port_min, port_max = local.node_port_max, source = local.pub_lb_nsg_id, source_type = local.rule_type_nsg,
83
+ },
78
84
" Allow TCP ingress to workers for health check from public load balancers" : {
79
85
protocol = local.tcp_protocol, port = local.health_check_port, source = local.pub_lb_nsg_id, source_type = local.rule_type_nsg,
80
86
},
0 commit comments