Hey there, OpenTofu community! We've been working hard to refine the 1.8.0-alpha1 with your feedback! A few rough edges have been polished and a few new features have been added.
If you have a non-production setup that you would be willing to test any of the new features on, please give it a try and give us feedback using a GitHub issue, even if it's just telling us that everything went well.
This blog post will go over how to download the new preview release and expand on the features presented in the 1.8.0-alpha1 blog post.
Do not test this release on a production project! It is not a stable release!
On 2024/07/11, 1.8.0-beta2 was released to address issues present in 1.8.0-beta1.
Downloading the beta release
The beta release is available exclusively from the GitHub Releases page. Please select the appropriate file for your platform. Here are some quick links:
Platform/Device | Download link |
---|---|
Desktop Windows computer (64-bit) | tofu_1.8.0-beta2_windows_amd64.zip |
MacOS (Macbook M1 or higher; ARM64) | tofu_1.8.0-beta2_darwin_arm64.tar.gz |
MacOS (Macbook pre-M1; AMD64) | tofu_1.8.0-beta2_darwin_amd64.tar.gz |
Intel/AMD Linux computer or server (AMD64) | tofu_1.8.0-beta2_linux_amd64.tar.gz |
ARM-based Linux computer or Raspberry Pi 3 or higher (ARM64) | tofu_1.8.0-beta2_linux_arm64.tar.gz |
For the releases above, please unpack the archive and you should find the tofu
binary inside. You can also use the standalone installer to download the release with signature verification.
Provider mocking in tofu test
Building on the existing ability to override specific data sources, resources, and module calls, tofu test
now supports mocking entire provider definitions. This new feature allows you to automatically generate mock values for resources and data sources on a per-provider basis. As an example, consider the following code that spins up an m6i.2xlarge instance on AWS:
Instead of querying the AMI ID and spinning up the instance, we can write test code as follows:
While this will not fully test the entire provisioning, it will highlight errors that may be caused by incorrectly connecting resources together without the need for an actual AWS account.
Resource overrides in tofu test
First introduced in OpenTofu 1.8.0-alpha1, you can now override resources, data sources and entire modules from your tests, allowing you to create similar behavior to mocks in traditional software testing. As an example, consider the following code that spins up an m6i.2xlarge
instance on AWS:
Instead of querying the AMI ID and spinning up the instance, we can write test code as follows:
While this will not fully test the entire provisioning, it will highlight errors that may be caused by incorrectly connecting resources together without the need for an actual AWS account. Similarly, you can use override_module
to override an entire module.
Early variable/locals evaluation
Introduced in OpenTofu 1.8.0-alpha1, this feature lets you use variables and locals for backends, module sources and encryption configuration as long as they are not dependent on resources, data sources or module outputs. This works even if a local is referencing a variable, for example. This is only the first in a series of improvements that will make the .tf code more flexible with more improvements coming in future releases.
The tofu init
command will now consume your .tfvars
file and let you specify variables using the -var
and -var-file
options. Please note that this alpha release will not prompt you for missing variables, which is a feature we will add later. Note, that tofu init
will fail if it is missing variables needed for static evaluation.
For example, if you wanted to use the same configuration for your S3 backend and your AWS provider, you can now do this:
You can also use this to manage module versions with both registry references and git URLs.
Finally, here's how you can set up encryption with a passphrase using a variable:
Override files for OpenTofu: keeping compatibility
Since we are now adding features to OpenTofu that are not present in Terraform, we want to give module authors the ability to write code for both OpenTofu and Terraform without needing to maintain two copies of their modules. You can now create files named .tofu
that are exclusive to OpenTofu. If you create a file named foo.tofu
, OpenTofu will ignore the similarly-named foo.tf
file. You can use this functionality to put your Terraform-specific code in the .tf
file and then override it for OpenTofu in the .tofu
file.
Bugfixes and improvements
Static Variable Planing
Static variables are now handled correctly when embedded in plan files. This was reported as a bug found in 1.8.0-alpha1.
Improved provider error messages
Also included in the beta is improvements in error messages produced by misconfigured providers. Some defaulted providers which require configuration blocks were able to generate error messages like:
This error message will now include information about which provider is encountering the specific missing-block validation issue to help the user track it down.
Providing feedback
Thank you for taking the time to test this preview release. If you have any feedback, please use a GitHub issue or chat with us on the OpenTofu Slack.