Skip to content

Commit

Permalink
Merge pull request #3 from weka/feat/open-14000-port-for-workers
Browse files Browse the repository at this point in the history
feat: open 14000 port for workers
  • Loading branch information
Tarasovych authored Nov 27, 2024
2 parents e89dc0b + a37a871 commit 5173c3f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/network/nsg-workers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ locals {
"Allow ICMP ingress to workers for path discovery" : {
protocol = local.icmp_protocol, port = local.all_ports, source = local.anywhere, source_type = local.rule_type_cidr,
},

"Allow 14000" : {
protocol = local.tcp_protocol, port = 14000, source = local.worker_nsg_id, source_type = local.rule_type_cidr,
},
},

local.pod_nsg_enabled ? {
Expand Down

0 comments on commit 5173c3f

Please sign in to comment.