The Juju team is happy to announce that the Juju Terraform provider v0.8.0 has been released!!!
Thanks to all the contributors!!!
Update the provider version:
terraform {
required_providers {
juju = {
source = "juju/juju"
version = "0.8.0"
}
}
}
LINKS:
FEATURES:
-
Add provisioned machines:
juju_machine
now supports machines already provisioned. This is similar to usingjuju add-machine ssh:user@host
. This new feature enables other machines already provisioned using Terraform to be added to a Juju controller.
ENHANCEMENTS:
-
The CI has been enhanced by enabling a K8s based Juju controller for GitHub actions.
-
Integration tests now can use environment variables to identify if the testing environment has everything required to run the test. For example, a K8s controller vs an LXD controller.
BUG FIXES:
-
Process region value in cloud models and force it to be computed by @juanmanuel-tirado in https://github.com/juju/terraform-provider-juju/pull/214
-
[JUJU-3905] Upgrade charms using channel by @juanmanuel-tirado in https://github.com/juju/terraform-provider-juju/pull/224
-
Fix message for model not found (#222) by @amandahla in https://github.com/juju/terraform-provider-juju/pull/227
-
Support models removed outside the plan. by @juanmanuel-tirado in https://github.com/juju/terraform-provider-juju/pull/229