v2.0.0
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"
}
}
}