CyrenThreatIntelligence v3.0.4: Optional tokens with conditional deployment#13811
Merged
v-atulyadav merged 1 commit intoMar 13, 2026
Merged
Conversation
…oyment
## Summary
Made both JWT tokens (IP Reputation and Malware URL) optional with ARM conditional deployment. Customers can now install either feed or both based on their subscription.
## Changes
- Changed `minLength: 1` to `minLength: 0` for both token parameters
- Added ARM conditions to each RestApiPoller connector:
- IP Reputation: `"condition": "[[not(empty(parameters('cyrenIpReputationToken')))]"`
- Malware URL: `"condition": "[[not(empty(parameters('cyrenMalwareUrlToken')))]"`
- Updated UI labels to indicate tokens are optional
- Updated placeholder text to "Leave empty if not purchased"
- Added instruction text explaining customers can use either feed or both
## Why
Cyren feeds are now sold separately on Azure Marketplace. Customers purchasing only one feed were unable to deploy without entering a dummy token, which caused 403 errors on the unused connector. This fix allows flexible deployment matching the subscription model.
v-shukore
approved these changes
Mar 13, 2026
v-atulyadav
approved these changes
Mar 13, 2026
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
Made both JWT tokens (IP Reputation and Malware URL) optional with ARM conditional deployment. Customers can now install either feed or both based on their subscription.
Changes
minLength: 1tominLength: 0for both token parameters"condition": "[not(empty(parameters('cyrenIpReputationToken')))]""condition": "[not(empty(parameters('cyrenMalwareUrlToken')))]"Why
Cyren feeds are now sold separately on Azure Marketplace as individual SaaS offers (IP Reputation and Malware URL). Customers purchasing only one feed were unable to deploy without entering a dummy token for the other feed, which caused:
This fix allows flexible deployment matching the subscription model.
Files Changed
Solutions/CyrenThreatIntelligence/Package/mainTemplate.json- Added conditions and updated UI textSolutions/CyrenThreatIntelligence/Package/3.0.4.zip- Updated packageSolutions/CyrenThreatIntelligence/ReleaseNotes.md- Added v3.0.4 entryTesting