Add Sentinel Solution deployment package (mainTemplate + createUiDefinition)#79
Merged
Conversation
…, README) Adds solution/ with a top-level mainTemplate.json that orchestrates deployment of all RetailShield components (custom tables, 13 analytics rules, 5 playbooks) via linked ARM template deployments with conditional flags per component type. createUiDefinition.json provides a guided Azure portal wizard experience with pre-deployment checklist and compliance contact configuration. Closes #71
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
The file was stored with literal \n sequences instead of real newlines (MCP push_files encoding bug from previous session), causing syntax errors in pytest and flake8 on every branch forked from dev.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #71
Adds the
solution/directory with the top-level ARM deployment orchestration for RetailShield as a Microsoft Sentinel Solution. This ties together all other RetailShield components (analytics rules, playbooks, data connector) into a single deployable package with an optional Azure portal wizard.Files added
mainTemplate.json
deployAnalyticsRules,deployPlaybooks,deployDataConnector— each can be set tofalseto skip that component groupworkspaceName,location,complianceContactEmail,organisationNamecreateUiDefinition.json
How to test
JSON validation:
CLI deployment (dry-run / what-if):
Confirm the what-if output lists linked deployments for all components without errors.
Portal UI test: Navigate to Deploy a custom template in the Azure portal, load both
mainTemplate.jsonandcreateUiDefinition.jsonvia the Create UI definition preview tool at https://portal.azure.com/#blade/Microsoft_Azure_CreateUIDef/SandboxBlade. Verify all three wizard steps render correctly with the correct labels, validations, and InfoBox warnings.Selective deployment: Re-run the CLI with
deployPlaybooks=falseand confirm the what-if output excludes Logic App deployments.Generated by Claude Code