@@ -66,6 +66,9 @@ locals {
6666 " Allow TCP ingress to workers from internal load balancers" : {
6767 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,
6868 },
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+ },
6972 " Allow TCP ingress to workers for health check from internal load balancers" : {
7073 protocol = local.tcp_protocol, port = local.health_check_port, source = local.int_lb_nsg_id, source_type = local.rule_type_nsg,
7174 },
@@ -75,6 +78,9 @@ locals {
7578 " Allow TCP ingress to workers from public load balancers" : {
7679 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,
7780 },
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+ },
7884 " Allow TCP ingress to workers for health check from public load balancers" : {
7985 protocol = local.tcp_protocol, port = local.health_check_port, source = local.pub_lb_nsg_id, source_type = local.rule_type_nsg,
8086 },
0 commit comments