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