v5.0.0
Breaking changes
The type of argocd_application.spec.sync_policy.automated
and argocd_application.spec.sync_policy.retry.backoff
have changed within the provider. As a result, you will need to convert usage of these into block syntax. See below for an example.
resource "argocd_application" "app" {
...
spec {
...
sync_policy {
- automated = {
+ automated {
prune = true
self_heal = true
allow_empty = true
}
retry {
limit = "5"
- backoff = {
+ backoff {
duration = "30s"
max_duration = "2m"
factor = "2"
}
}
}
...
}
}
What's Changed
- Add support for GitHub app credentials by @philamente in #235
Changelog
- cb9f554 Add support for GitHub app credentials (#235)
- 124d87b build(deps): bump golang.org/x/net (#233)
- 7354102 build(deps): bump golang.org/x/text from 0.3.7 to 0.3.8 (#232)
- 7ce3476 Use
schema.TypeSet
for applicationsync_policy
(#228)
Contributors
- @philamente made their first contribution in #235
- @onematchfox
Full Changelog: v4.3.0...v5.0.0