skip to Main Content

Azure Deployment Script fails with AuthenticationFailed

We have a fairly simple deployment script to add a delay: resource awaitscript 'Microsoft.Resources/deploymentScripts@2020-10-01' = { name: 'await-${appName}' location: location kind: 'AzurePowerShell' properties: { azPowerShellVersion: '9.7' scriptContent: 'Start-Sleep -Seconds 150' timeout: 'PT1H' retentionInterval: 'PT1H' } dependsOn: [appServicePlan] } It has…

VIEW QUESTION

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
Back To Top
Search