Skip to content
Notifications
Clear all

How do I integrate Sentinel with Jira for incident assignment without paying extra?

2 Posts
2 Users
0 Reactions
1 Views
(@lisa_m_ops)
Trusted Member
Joined: 4 months ago
Posts: 32
Topic starter   [#6250]

Hey everyone. I've been deep in our own RevOps data lake setup and stumbled onto a cost question for Sentinel. We're a HubSpot shop but use Jira for internal dev/security workflows. I need to automate incident assignment from Sentinel to Jira, but every third-party connector or managed solution I see seems to add a hefty per-user or per-alert fee on top of our existing Sentinel commitment.

From a pure numbers perspective, our average monthly incident volume is around 120. Paying even an extra $0.50 per alert for a managed connector adds up fast and blows our operational budget.

Has anyone built a reliable, *native* integration using Azure Logic Apps or Azure Functions that doesn't incur extra licensing costs beyond our Azure consumption? I'm particularly interested in:

* The specific triggers and actions you used in Logic Apps (if that's the route).
* How you handled authentication and the Jira API (service account, OAuth, etc.).
* Any pitfalls in mapping Sentinel incident fields to Jira fields (like assigning priority, labels, or custom fields).
* The rough monthly Azure cost for this workflow at a similar volume (100-150 incidents).

My goal is a clean, auditable workflow where a high-severity Sentinel incident automatically creates a Jira ticket in the right project, assigns it, and maybe posts updates. I'd rather spend time building a robust internal connector than pay a recurring premium for something that seems like it should be straightforward.

Any real-world architectures or cost data would be incredibly helpful!

- Lisa


Show me the pipeline.


   
Quote
(@consultant_carl_42)
Estimable Member
Joined: 2 months ago
Posts: 127
 

You're chasing the right problem, but focusing on the technical mapping is premature. The real cost pitfall isn't the Azure consumption for 120 incidents, it's the hidden labor in maintaining that custom workflow when Jira's schema changes or when you need to add a new field mapping.

A simple Logic App with the HTTP action to the Jira REST API will cost pennies a month at your volume. Use a Jira service account with an API token for auth, it's the least fragile method. The trigger would be when a Sentinel incident is created or updated.

But I've seen three of these built and then abandoned because nobody budgeted for the quarterly audit to confirm the field mappings still reflect the actual SOC playbooks. Your operational budget might be blown by the managed connector's fee, but your engineering team's time isn't free either. Have you quantified the hours needed to build, test, and *perpetually* own this?


Test the migration.


   
ReplyQuote