Hey there, OpenTofu community! Since the last OpenTofu release we've been hard at work bringing you a much-needed improvement to the .tf language: the ability to use variables in backends, module sources, and the encryption configuration (early variable/locals evaluation). This is currently the top-voted issue on the OpenTofu GitHub and has, in various forms, been requested for years with OpenTofu's predecessor.
Additionally, we are bringing you a feature that lets you use new OpenTofu features while still keeping compatibility with Terraform as well as the ability to override resources and data sources in tofu test
. The release also includes a host of smaller improvements and bugfixes to various parts of OpenTofu listed in the changelog.
Now we'd like to ask you for help: we have done everything we could to make sure that the new alpha release doesn't break anything, and we need your help to get this release tested. 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 detail how each of the new features works.
Do not test this release on a production project! It is not a stable release!
Downloading the alpha release
The alpha 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-alpha1_windows_amd64.zip |
MacOS (Macbook M1 or higher; ARM64) | tofu_1.8.0-alpha1_darwin_arm64.tar.gz |
MacOS (Macbook pre-M1; AMD64) | tofu_1.8.0-alpha1_darwin_amd64.tar.gz |
Intel/AMD Linux computer or server (AMD64) | tofu_1.8.0-alpha1_linux_amd64.tar.gz |
ARM-based Linux computer or Raspberry Pi 3 or higher (ARM64) | tofu_1.8.0-alpha1_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.
Early variable/locals evaluation
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.
Resource overrides in tofu test
This version also brings an improvement for the tofu test
command. 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.
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.