CompositionalIT / farmer

Repeatable Azure deployments with ARM templates - made easy!
https://compositionalit.github.io/farmer
MIT License
514 stars 156 forks source link

Add support for functions max scale out limit #1101

Closed MartinWa closed 2 months ago

MartinWa commented 2 months ago

The changes in this PR are as follows:

I have read the contributing guidelines and have completed the following:

If I haven't completed any of the tasks above, I include the reasons why here: I do not currently have access to Azure to test this but I have done so in the past.

Below is a minimal example configuration that includes the new features, which can be used to deploy to Azure:

let myFunction = functions {
    name "myWebApp"
    sku WebApp.Sku.Y
    max_scale_out_limit 5
}
Larocceau commented 2 months ago

I've done a successful end-to-end test on this.