Skip to content

Commit

Permalink
add srun port range in the NSG rule (#1863)
Browse files Browse the repository at this point in the history
  • Loading branch information
xpillons authored Feb 27, 2024
1 parent 1068a4f commit b663a8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bicep/azhop.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ var config = {
Rdp: ['3389']
// Pbs: ['6200', '15001-15009', '17001', '32768-61000']
// Slurm: ['6817-6819']
Shed: (queue_manager == 'slurm') ? ['6817-6819'] : ['6200', '15001-15009', '17001', '32768-61000']
Shed: (queue_manager == 'slurm') ? ['6817-6819', '59000-61000'] : ['6200', '15001-15009', '17001', '32768-61000']
Lustre: ['988', '1019-1023']
Nfs: ['111', '635', '2049', '4045', '4046']
SMB: ['445']
Expand Down
2 changes: 1 addition & 1 deletion tf/variables_local.tf
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ locals {
Rdp = ["3389"]
#Pbs = ["6200", "15001-15009", "17001", "32768-61000"]
#Slurmd = ["6817-6819"]
Sched = (local.queue_manager == "slurm") ? ["6817-6819"] : ["6200", "15001-15009", "17001", "32768-61000"]
Sched = (local.queue_manager == "slurm") ? ["6817-6819", "59000-61000"] : ["6200", "15001-15009", "17001", "32768-61000"]
Lustre = ["635", "988"]
Nfs = ["111", "635", "2049", "4045", "4046"]
SMB = ["445"]
Expand Down

0 comments on commit b663a8b

Please sign in to comment.