Skip to content

Commit

Permalink
Update vwan-managed-app template to include public IP deployment opti…
Browse files Browse the repository at this point in the history
…on for ingress
  • Loading branch information
chkp-olgami committed Feb 28, 2024
1 parent 69b22f2 commit 65fbc74
Showing 1 changed file with 40 additions and 2 deletions.
42 changes: 40 additions & 2 deletions azure/templates/vwan-managed-app/mainTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,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 All @@ -170,7 +199,7 @@
"name": "vwan-app",
"product": "cp-vwan-managed-app",
"publisher": "checkpoint",
"version": "1.0.8"
"version": "1.0.11"
},
"properties": {
"managedResourceGroupId": "[variables('managedResourceGroupId')]",
Expand Down Expand Up @@ -237,6 +266,15 @@
},
"smart1CloudTokenE": {
"value": "[parameters('smart1CloudTokenE')]"
},
"publicIPIngress": {
"value": "[parameters('publicIPIngress')]"
},
"createNewIPIngress": {
"value": "[parameters('createNewIPIngress')]"
},
"ipIngressExistingResourceId": {
"value": "[parameters('ipIngressExistingResourceId')]"
}
}
}
Expand Down

0 comments on commit 65fbc74

Please sign in to comment.