The Juju team is happy to announce that the Juju Terraform provider 0.16.0-rc1 candidate is released on 20 Jan 2025!
Thanks to all the contributors, especially @shipperizer and @amandahla.
For specific dates for testing and release for the v.0.16.0, please refer to the 0.146.0 Release Planning post.
Note that because this is a release candidate, it’s not pushed onto the HashiCorp repository, so testing with the release candidate requires you to pull it and change the TF plan to use the local provider.
$ git checkout tags/0.16.0-rc1
$ EDGE_VERSION=0.16.0 make install
This will install the the provider in ~/.terraform.d/plugins/registry.terraform.io/juju/juju/0.16.0/linux_amd64
.
Update your configurations to use the local candidate:
terraform {
required_providers {
juju = {
source = "registry.terraform.io/juju/juju" # (uses local provider repository)
# source = "juju/juju" (uses the Hashicorp repository)
version = "~0.16.0"
}
}
}
LINKS:
NOTES:
- This release requires juju controller version 2.9.49 or later juju.
- This release uses juju client api code from the juju 3.6.0 release.
ENHANCEMENTS:
- The new juju_access_offer resource allows you to manage access to application offers (Tanks @amandahla).
- The new juju_application data source allows you to incorporate already existing applications. (Thanks @shipperizer).
- The new juju_jaas_group data source allows you to incorporate already existing groups (Thanks @pkulik0).
BUG FIXES:
- fix: fix the use of a hardcoded admin user by @alesstimec #653