I'm trying to deploy a workbook in azure but keep getting this error:
{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-deployment-operations for usage details.","details":\[{"code":"BadRequest","message":"Value cannot be null.\\r\\nParameter name: sharedType"}\]}
What does sharedType mean? I didn't find anything related in the azure docs
https://learn.microsoft.com/en-us/search/?terms=sharedType&scope=Azure&fromNavSearch=true
and also googled the error but couldn't find anything useful. Did someone have the same error before? Is there anything in the azure docs I missed about sharedType?
what api version are you using when you do this? are you posting to
microsoft.insights/workbooksormicrosoft.insights/myworkbooks(no longer supported)workbooks used to have concept of "private" and "shared", so you shouldn't have to set this anymore (or for a long time?). are you missing the 'kind' field in your template?
kind: "shared"would be the way to go.i just used this template:
which does not have
sharedTypebut does have 'kind' in it from inside the azure portal and it completed successfully.