0

I have a Linux Container-Based function app that I am deploying from an ARM template, I have found that I can enable "Continuous Deployment" via the Portal (screenshot below), but can't automate it with an ARM Template.

enter image description here

It would be really nice if we could automatically enable Continuous Deployment via the ARM template (or perhaps even enable it by default). Is there any way to do this?

Charles Xu
  • 29,862
  • 2
  • 22
  • 39
SSH This
  • 1,864
  • 4
  • 23
  • 41
  • I have exported the ARM template with this setting enabled, and its identical to when its disabled, so I fear this is not supported by ARM templates. – SSH This Aug 07 '19 at 16:25

1 Answers1

2

I think you're right. It's not a property for Azure Web App, it's a trigger for the action event of the image registry. From the creation steps, you can find the webhook is created in the ACR or Docker hub which the web image in. The continuous deployment just provides a URL for the webhook. So you cannot set the Continuous Deployment in the ARM template in Azure.

Charles Xu
  • 29,862
  • 2
  • 22
  • 39