CompositionalIT / farmer

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

Network securty groups option to set initial rule priority #996

Closed ninjarobot closed 1 year ago

ninjarobot commented 1 year 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:

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

    nsg {
        name "my-nsg"
        initial_rule_priority 1000
        priority_incr 50
    }
ninjarobot commented 1 year ago

@UrviGoel can you please review? Will this solve your need for now? It will take a bit longer to add support for linking security rules to an existing NSG as requested in #992.

UrviGoel commented 1 year ago

Hey, this should work for me. Thank you!