skip to Main Content

Azure – databricks deployment bicep suddenly failing

The following bicep deployment has suddenly started failing and I do not understand why var managedResourceGroupName = 'rg-metadata-${dataBricksName}' resource databrickworkspace 'Microsoft.Databricks/workspaces@2018-04-01' = { name: dataBrickName location: location sku: { name: dataBrickPricingTier } properties: { managedResourceGroupId: managedResourceGroup.id parameters: { enableNoPublicIp: {…

VIEW QUESTION

Set Azure DevOps Pipeline Permissions via API

I am trying to set Azure DevOps Pipeline permission using the following API from Powershell: PATCH https://dev.azure.com/{organization}/{project}/_apis/pipelines/pipelinepermissions?api-version=7.0-preview.1 I have successfully achieved this for most resource types (Environments, Service Connections, and Variable Groups, however when I try to use it to…

VIEW QUESTION

Formatting golang time for Azure SDK

Consider the following golang today := time.Now().Format("2006-01-02T03:04:05.9999999Z") t, _ := time.Parse(time.RFC3339Nano, today) Why isn't that equivalent to the much simpler t := time.Now() ? I would like to confirm whether the above code is equivalent, as I believe it is,…

VIEW QUESTION
Back To Top
Search