Azure / Azure/azure-quickstart-templates
OMS solution deployment times out
- Dominant language
- Bicep
- Stars
- 14.9k
- Forks
- 16.2k
- Avg merge
- 6d 21h
- Merged PRs (30d)
- 6
Description
[oms-service-fabric-solution](https://github.com/Azure/azure-quickstart-templates/tree/master/oms-service-fabric-solution)
[oms-all-deploy](https://github.com/Azure/azure-quickstart-templates/tree/master/oms-all-deploy)
[oms-existing-storage-account](https://github.com/Azure/azure-quickstart-templates/tree/master/oms-existing-storage-account)
### Issue Details
Due to the parenthesis used in the solution name variables the deployment of the solution times out.
The error message states: The gateway did not receive a response from 'Microsoft.OperationsManagement' within the specified time period.'
Removing the parenthesis '(' and ')' solves the issue.
I noticed this only today, as yesterday the deployment actually worked fine.
example to fix the issue (variables section):
``` json
"securitySolution": "[concat('Security', '(', parameters('omsWorkspaceName'), ')')]",
```

to
``` json
"securitySolution": "[concat('Security-', parameters('name'))]",
```

Contributor guide
No contributing guide indexed for this repository
Research direction
Start with the variables sections in oms-service-fabric-solution, oms-all-deploy, and oms-existing-storage-account. Deploy the affected OMS solution templates and verify that removing parentheses from the solution name variables prevents the Microsoft.OperationsManagement timeout.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- azure, json
- Domain
- cloud, infrastructure
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 35/100