SSH This
SSH This

Reputation: 1929

Enable Continuous Deployment on Linux Container-based function app using ARM Template in Azure

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?

Upvotes: 0

Views: 299

Answers (1)

Charles Xu
Charles Xu

Reputation: 31462

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.

Upvotes: 2

Related Questions