Skip to content

v5.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 18 Mar 07:17
cb9f554

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

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 application sync_policy (#228)

Contributors

Full Changelog: v4.3.0...v5.0.0