Skip to content

v2.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Apr 15:35
· 190 commits to main since this release
48af27e

Changelog

Breaking Changes

  • 9848ca2 feat!: change tofu unpacking to default to terraform registry (#1001)
  • 48af27e feat!: update import path to v2 (#1004)

Action: All brokerpaks will need to define the full provider name in the terraform config.
E.g.

terraform {
  required_providers {
    random = {
      source  = "hashicorp/random"
      version = ">=3.1.0"
    }
  }
}

should be changed to

terraform {
  required_providers {
    random = {
      source  = "registry.terraform.io/hashicorp/random"
      version = ">=3.1.0"
    }
  }
}

Others