Reputation: 991
I create an oms workspace through ARM templates and deploy them to azure through azure devops. Because I have an automated mindset I also deploy the virtual machine ARM through azure devops.
Because I don't want to deploy the OMS workspace and go to the portal and copy the workspace id to paste this in the arm template parameters of the virtual machine to point the VM extension to the right workspace.
My question now is if it is possible to connect these 2 in 1 deployment to deploy an oms workspace and export the workspace id to the vm arm deployment.
So that I skip the manual step and automate the entire deployment.
Source: I found a fellow automate thinking guy but there was no right answer on his question. https://github.com/MicrosoftDocs/azure-docs/issues/13787
Does anyone have any clue if this is possible I searched and not found any way to do this atm.
Upvotes: 6
Views: 3330
Reputation: 3994
As of this writing, for an App Insights resource, all you need is the workspace name:
"WorkspaceResourceId": "resourceId('Microsoft.OperationalInsights/workspaces', parameters('workspaceName'))]
"
Upvotes: 1
Reputation: 72171
you can use reference()
function to achieve that:
"[reference(resourceId('Microsoft.OperationalInsights/workspaces', 'workspaceName'), '2017-03-15-preview').customerId]"
Upvotes: 10