Skip to content

Commit

Permalink
merge master and add dummy connection var
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwinvenkatesha committed Nov 26, 2024
1 parent 986143e commit dae1e61
Showing 1 changed file with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"prerequisitesDeployTemplateFile": "",
"lastUpdateTime": "2024-11-21T00:00:00.000Z",
"entities": [

],
"tags": [ "Remediation" ],
"support": {
Expand All @@ -29,7 +29,7 @@
"notes": [ "Initial version" ]
}
]
},
},
"parameters": {
"PlaybookName": {
"defaultValue": "Illumio-Port-Blocking-Switch",
Expand Down Expand Up @@ -86,7 +86,8 @@
"port": "[parameters('PORT')]",
"orgId": "[parameters('ORG_ID')]",
"apiKey": "[parameters('API_KEY')]",
"apiSecret": "[parameters('API_SECRET')]"
"apiSecret": "[parameters('API_SECRET')]",
"sentinelConnectionName": "[concat('azuresentinel-', parameters('PlaybookName'))]"
},
"resources": [
{
Expand Down Expand Up @@ -355,7 +356,13 @@
},
"parameters": {
"$connections": {
"value": {}
"value": {
"azuresentinel": {
"connectionId": "[resourceId('Microsoft.Web/connections', variables('sentinelConnectionName'))]",
"connectionName": "[variables('sentinelConnectionName')]",
"id": "[concat('/subscriptions/', subscription().subscriptionId, '/providers/Microsoft.Web/locations/', resourceGroup().location, '/managedApis/azuresentinel')]"
}
}
}
}
}
Expand Down

0 comments on commit dae1e61

Please sign in to comment.