CompositionalIT / farmer

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

Add support for dapr components #1054

Closed sWW26 closed 1 year ago

sWW26 commented 1 year ago

The changes in this PR are as follows:

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

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

containerEnvironment {
    name "farmer-ce"

    add_dapr_components [
        daprComponent {
            name "cron-binding-component"
            cron_binding "0 * * * * *"
        }
    ]
}
isaacabraham commented 1 year ago

Thank you!