Ansible repository with playbooks to manage azure objects
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

35 lines
1.3 KiB

  1. {
  2. "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  3. "contentVersion": "1.0.0.0",
  4. "parameters": {
  5. "solutions_SecurityInsights_name": {
  6. "defaultValue": "SecurityInsights({{ sentinel.law.name }})",
  7. "type": "String"
  8. },
  9. "workspaces_externalid": {
  10. "defaultValue":
  11. "/subscriptions/{{ sentinel.law.subscriptionid }}/resourceGroups/{{ sentinel.resource_group }}/providers/Microsoft.OperationalInsights/workspaces/{{ sentinel.law.name }}",
  12. "type": "String"
  13. }
  14. },
  15. "variables": {},
  16. "resources": [
  17. {
  18. "type": "Microsoft.OperationsManagement/solutions",
  19. "apiVersion": "2015-11-01-preview",
  20. "name": "[parameters('solutions_SecurityInsights_name')]",
  21. "location": "East US",
  22. "plan": {
  23. "name": "SecurityInsights({{ sentinel.law.name }})",
  24. "promotionCode": "",
  25. "product": "OMSGallery/SecurityInsights",
  26. "publisher": "Microsoft"
  27. },
  28. "properties": {
  29. "workspaceResourceId": "[parameters('workspaces_externalid')]",
  30. "containedResources": []
  31. }
  32. }
  33. ]
  34. }