CompositionalIT / farmer

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

Add service bus security config and zone redundancy #995

Closed BlakeWills closed 1 year ago

BlakeWills commented 1 year ago

This PR closes #

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:

let myServiceBus = serviceBus {
    name "allMyQueues"
    sku (Premium MessagingUnits.OneUnit)
    min_tls_version TlsVersion.Tls12
    enable_zone_redundancy
    disable_public_network_access
}