Skip to content

Commit

Permalink
FMG UMS: update nat rule 3
Browse files Browse the repository at this point in the history
  • Loading branch information
jvhoof committed Dec 4, 2024
1 parent 547b0da commit 5b7b94f
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions FortiGate/Autoscale/ums/mainTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -761,16 +761,16 @@
"dependsOn": [
"[variables('externalLBId')]"
],
"copy": {
"name": "inboundNatRulesSSH",
"count": "[parameters('fortiGateCount')]"
},
"properties": {
"frontendIPConfiguration": {
"id": "[variables('externalLBFEId')]"
},
"backendAddressPool": {
"id": "[variables('externalLBBEId')]"
},
"protocol": "Tcp",
"frontendPort": "[copyIndex(50030)]",
"frontendPortRangeStart": 50030,
"frontendPortRangeEnd": 51000,
"backendPort": 22,
"enableFloatingIP": false
}
Expand All @@ -782,17 +782,17 @@
"dependsOn": [
"[variables('externalLBId')]"
],
"copy": {
"name": "inboundNatRulesHTTPS",
"count": "[parameters('fortiGateCount')]"
},
"properties": {
"frontendIPConfiguration": {
"id": "[variables('externalLBFEId')]"
},
"backendAddressPool": {
"id": "[variables('externalLBBEId')]"
},
"protocol": "Tcp",
"frontendPort": "[copyIndex(40030)]",
"backendPort": 22,
"frontendPortRangeStart": 40030,
"frontendPortRangeEnd": 41000,
"backendPort": 8443,
"enableFloatingIP": false
}
},
Expand Down Expand Up @@ -936,6 +936,11 @@
}
}
]
},
"diagnosticsProfile": {
"bootDiagnostics": {
"enabled": "[variables('serialConsoleEnabled')]"
}
}
}
}
Expand Down

0 comments on commit 5b7b94f

Please sign in to comment.