CompositionalIT / farmer

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

Add plural storage containers #1119

Closed Tarmil closed 5 days ago

Tarmil commented 1 week 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:

let account = storageAccount {
    add_blob_containers [ "blob1"; "blob2" ]
    add_public_containers [ "public1"; "public2" ]
    add_private_containers [ "private1"; "private2" ]
    add_file_shares [ "share1"; "share2" ]
    add_file_shares_with_quota [ "share3"; "share4" ] 1024<Gb>
    add_queues [ "queue1"; "queue2" ]
}