We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resource type Noise on Microsoft.OperationsManagement/solutions/SecurityInsights apiVersion 2015-11-01-preview
Client (PowerShell, Azure CLI, or API) CLI
Relevant ARM Template code (we only need the resource object for the above resourceType and apiVersion, but if it's easier you can include the entire template { "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "metadata": { "_generator": { "name": "bicep", "version": "0.4.1272.37030", "templateHash": "9929966069273470739" } }, "parameters": { "region": { "type": "string", "defaultValue": "[resourceGroup().location]", "metadata": { "description": "Location of the Log Analytics workspace" } }, "name": { "type": "string", "defaultValue": "sulank-sentinel", "metadata": { "description": "Name of the Log Analytics Workspace" } }, "retentionDays": { "type": "int", "defaultValue": 90, "metadata": { "description": "Retention of the logs in days" } }, "skuName": { "type": "string", "defaultValue": "PerGB2018", "metadata": { "description": "SKU of the Log Analytics workspace" } } }, "resources": [ { "type": "Microsoft.OperationalInsights/workspaces", "apiVersion": "2021-06-01", "name": "[parameters('name')]", "location": "[parameters('region')]", "properties": { "retentionInDays": "[parameters('retentionDays')]", "sku": { "name": "[parameters('skuName')]" } } }, { "type": "Microsoft.OperationsManagement/solutions", "apiVersion": "2015-11-01-preview", "name": "[format('SecurityInsights({0})', parameters('name'))]", "location": "[parameters('region')]", "properties": { "workspaceResourceId": "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('name'))]" }, "plan": { "name": "[format('SecurityInsights({0})', parameters('name'))]", "product": "OMSGallery/SecurityInsights", "publisher": "Microsoft", "promotionCode": "" } } ] } Expected response : "I expected no noise since the template has not been modified since the resources were deployed
resourceType
apiVersion
Current (noisy) response (either include a screenshot of the what-if output, or copy/paste the text)
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the noise
Resource type Noise on Microsoft.OperationsManagement/solutions/SecurityInsights
apiVersion 2015-11-01-preview
Client (PowerShell, Azure CLI, or API) CLI
Relevant ARM Template code (we only need the resource object for the above
resourceType
andapiVersion
, but if it's easier you can include the entire template{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.4.1272.37030",
"templateHash": "9929966069273470739"
}
},
"parameters": {
"region": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "Location of the Log Analytics workspace"
}
},
"name": {
"type": "string",
"defaultValue": "sulank-sentinel",
"metadata": {
"description": "Name of the Log Analytics Workspace"
}
},
"retentionDays": {
"type": "int",
"defaultValue": 90,
"metadata": {
"description": "Retention of the logs in days"
}
},
"skuName": {
"type": "string",
"defaultValue": "PerGB2018",
"metadata": {
"description": "SKU of the Log Analytics workspace"
}
}
},
"resources": [
{
"type": "Microsoft.OperationalInsights/workspaces",
"apiVersion": "2021-06-01",
"name": "[parameters('name')]",
"location": "[parameters('region')]",
"properties": {
"retentionInDays": "[parameters('retentionDays')]",
"sku": {
"name": "[parameters('skuName')]"
}
}
},
{
"type": "Microsoft.OperationsManagement/solutions",
"apiVersion": "2015-11-01-preview",
"name": "[format('SecurityInsights({0})', parameters('name'))]",
"location": "[parameters('region')]",
"properties": {
"workspaceResourceId": "[resourceId('Microsoft.OperationalInsights/workspaces', parameters('name'))]"
},
"plan": {
"name": "[format('SecurityInsights({0})', parameters('name'))]",
"product": "OMSGallery/SecurityInsights",
"publisher": "Microsoft",
"promotionCode": ""
}
}
]
}
Expected response : "I expected no noise since the template has not been modified since the resources were deployed
Current (noisy) response (either include a screenshot of the what-if output, or copy/paste the text)
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: