Skip to content

Commit

Permalink
Updated ingress
Browse files Browse the repository at this point in the history
  • Loading branch information
chkp-yairra committed Jun 13, 2024
1 parent 69b8bcb commit 1df0316
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 3 deletions.
4 changes: 2 additions & 2 deletions azure/templates/vwan-managed-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ https://management.azure.com/subscriptions/{subscription_id}/providers/Microsoft
}
],
"availableVersions": [
"8110.900335.1435",
"8120.900631.1433",
"8110.900335.1522",
"8120.900631.1522",
"latest"
],
"marketPlaceLink": "https://aka.ms/Checkpointmarketplace",
Expand Down
40 changes: 39 additions & 1 deletion azure/templates/vwan-managed-app/mainTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,36 @@
"metadata": {
"description": "Managed app resource group Name"
}
}
},
"publicIPIngress": {
"type": "string",
"allowedValues": [
"no",
"yes"
],
"defaultValue": "no",
"metadata": {
"description": "Use public IP for ingress traffic"
}
},
"createNewIPIngress": {
"type": "string",
"allowedValues": [
"no",
"yes"
],
"defaultValue": "no",
"metadata": {
"description": "Create new public IP"
}
},
"ipIngressExistingResourceId": {
"type": "string",
"metadata": {
"description": "The resource id of the public IP"
},
"defaultValue": ""
}
},
"variables": {
"managedResourceGroupId": "[concat(subscription().id, '/resourceGroups/', parameters('managedResourceGroupName'))]"
Expand Down Expand Up @@ -238,6 +267,15 @@
},
"smart1CloudTokenE": {
"value": "[parameters('smart1CloudTokenE')]"
},
"publicIPIngress": {
"value": "[parameters('publicIPIngress')]"
},
"createNewIPIngress": {
"value": "[parameters('createNewIPIngress')]"
},
"ipIngressExistingResourceId": {
"value": "[parameters('ipIngressExistingResourceId')]"
}
}
}
Expand Down

0 comments on commit 1df0316

Please sign in to comment.