Skip to content

Commit

Permalink
feat(azure): add support for custom EH names
Browse files Browse the repository at this point in the history
  • Loading branch information
monrax committed Aug 20, 2024
1 parent d4ad354 commit a6d19b2
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion azure/azuredeployresources.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,24 @@
"contentVersion": "1.0.0.0",
"parameters": {
"apiManagementServiceName": {
"type": "string"
"type": "string",
"metadata": {
"description": "Name of your existing API Management instance"
}
},
"eventHubsNamespaceName": {
"type": "string",
"defaultValue": "GraylogAPISecurityEH",
"metadata": {
"description": "Name of EventHubs namespace"
}
},
"eventHubsInstanceName": {
"type": "string",
"defaultValue": "APIM-01",
"metadata": {
"description": "Name of the EventHubs instance"
}
}
},
"variables": {
Expand All @@ -17,6 +34,14 @@
"mode": "Incremental",
"templateLink": {
"uri": "https://raw.githubusercontent.com/resurfaceio/iac-templates/master/azure/event-hub.json"
},
"parameters": {
"eventHubsNamespaceName": {
"value": "[parameters('eventHubsNamespaceName')]"
},
"eventHubsInstanceName": {
"value": "[parameters('eventHubsInstanceName')]"
}
}
}
},
Expand Down

0 comments on commit a6d19b2

Please sign in to comment.