Skip to content

Commit b424059

Browse files
committed
fix(tooling): update CCF connector API versions to latest (2025-09-01 for SecurityInsights, 2025-07-01 for tables, 2024-03-11 for DCR)
1 parent 491f2dc commit b424059

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ function Get-MetaDataBaseResource($resourceName, $parentId, $contentId, $kind, $
161161

162162
return [PSCustomObject]@{
163163
name = "[concat(parameters('workspace'),'/Microsoft.SecurityInsights/',$resourceName)]";
164-
apiVersion = "2022-01-01-preview"
164+
apiVersion = "2025-09-01"
165165
type = "Microsoft.OperationalInsights/workspaces/providers/metadata"
166166
properties = $properties;
167167
}
@@ -246,10 +246,10 @@ function Get-ContentTemplateResource($contentResourceDetails, $TemplateCounter,
246246

247247
function Get-ArmResource($name, $type, $kind, $properties) {
248248
[hashtable]$apiVersion = @{
249-
"Microsoft.SecurityInsights/dataConnectors" = "2023-02-01-preview";
250-
"Microsoft.SecurityInsights/dataConnectorDefinitions" = "2022-09-01-preview";
251-
"Microsoft.OperationalInsights/workspaces/tables" = "2022-10-01";
252-
"Microsoft.Insights/dataCollectionRules" = "2022-06-01";
249+
"Microsoft.SecurityInsights/dataConnectors" = "2025-09-01";
250+
"Microsoft.SecurityInsights/dataConnectorDefinitions" = "2025-09-01";
251+
"Microsoft.OperationalInsights/workspaces/tables" = "2025-07-01";
252+
"Microsoft.Insights/dataCollectionRules" = "2024-03-11";
253253
}
254254

255255
return [PSCustomObject]@{

0 commit comments

Comments
 (0)