Skip to content
New issue

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

Noise on Microsoft.OperationsManagement/solutions/SecurityInsights #251

Open
suryalankalapalli opened this issue Feb 25, 2022 · 0 comments
Labels
noise Noise in what-if response provider bug Issue exists in the resource provider

Comments

@suryalankalapalli
Copy link

suryalankalapalli commented Feb 25, 2022

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 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

Current (noisy) response (either include a screenshot of the what-if output, or copy/paste the text)

image

Additional context
Add any other context about the problem here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
noise Noise in what-if response provider bug Issue exists in the resource provider
Projects
None yet
Development

No branches or pull requests

2 participants