Skip to content

Commit 72a18cd

Browse files
author
Varunsai Alaparthi
committed
Solved the failures caused by null values for tenant , license and innerSteps by removing them from the Defnition
1 parent 71fba90 commit 72a18cd

File tree

4 files changed

+4
-13
lines changed

4 files changed

+4
-13
lines changed

Solutions/Illumio Insight/Data Connectors/IllumioInsight_CCP/IllumioInsight_Definition.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@
4040
"isPreview": false
4141
},
4242
"permissions": {
43-
"tenant": null,
44-
"licenses": null,
4543
"resourceProvider": [
4644
{
4745
"provider": "Microsoft.OperationalInsights/workspaces",
@@ -100,8 +98,7 @@
10098
},
10199
"type": "ConnectionToggleButton"
102100
}
103-
],
104-
"innerSteps": null
101+
]
105102
}
106103
],
107104
"isConnectivityCriteriasMatchSome": false
-47 Bytes
Binary file not shown.

Solutions/Illumio Insight/Package/mainTemplate.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,6 @@
124124
"isPreview": false
125125
},
126126
"permissions": {
127-
"tenant": null,
128-
"licenses": null,
129127
"resourceProvider": [
130128
{
131129
"provider": "Microsoft.OperationalInsights/workspaces",
@@ -184,8 +182,7 @@
184182
},
185183
"type": "ConnectionToggleButton"
186184
}
187-
],
188-
"innerSteps": null
185+
]
189186
}
190187
],
191188
"isConnectivityCriteriasMatchSome": false
@@ -371,8 +368,6 @@
371368
"isPreview": false
372369
},
373370
"permissions": {
374-
"tenant": null,
375-
"licenses": null,
376371
"resourceProvider": [
377372
{
378373
"provider": "Microsoft.OperationalInsights/workspaces",
@@ -431,8 +426,7 @@
431426
},
432427
"type": "ConnectionToggleButton"
433428
}
434-
],
435-
"innerSteps": null
429+
]
436430
}
437431
],
438432
"isConnectivityCriteriasMatchSome": false

Tools/Create-Azure-Sentinel-Solution/common/createCCPConnector.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ function createCCPConnectorResources($contentResourceDetails, $dataFileMetadata,
922922
}
923923
# log the title to the console
924924
$title = $ccpItem.title ?? $solutionName
925-
$connectorDescriptionText = "This Solution installs the data connector for $solutionName. You can get $title data in your Microsoft Sentinel workspace. After installing the solution, configure and enable this data connector by following guidance in Manage solution view."
925+
$connectorDescriptionText = "This Solution installs the data connector for $title. You can get $title data in your Microsoft Sentinel workspace. After installing the solution, configure and enable this data connector by following guidance in Manage solution view."
926926

927927
$baseDataConnectorTextElement = [PSCustomObject] @{
928928
name = "dataconnectors$global:connectorCounter-text";

0 commit comments

Comments
 (0)