farmer icon indicating copy to clipboard operation
farmer copied to clipboard

Add ability to associate metadata with Storage Account Queues. Metada…

Open cmarshall10450 opened this issue 1 year ago • 0 comments

…ta can be added for a single queue, multiple queues with unique metadata or multiple queues with the same metadata

This PR closes #916

The changes in this PR are as follows:

  • Adds ability to add metadata to Storage Account Queues

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

  • [x] Tested my code end-to-end against a live Azure subscription.
  • [x] Updated the documentation in the docs folder for the affected changes.
  • [x] Written unit tests against the modified code that I have made.
  • [x] Updated the release notes with a new entry for this PR.
  • [x] Checked the coding standards outlined in the contributions guide and ensured my code adheres to them.

If I haven't completed any of the tasks above, I include the reasons why here: The unit tests don't pass but I could not work out why. I cannot see a difference in the actual and expected values.

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

let storageAccount = storageAccount {
    name = "testaccount"
    add_queue_with_metadata "myqueue" (Map [
        "source", "imageStore"
    ])
}

cmarshall10450 avatar Sep 29 '22 20:09 cmarshall10450