Skip to main content

Help us test OpenTofu 1.7.0-alpha1

Help us test OpenTofu 1.7.0-alpha1

Hey there, OpenTofu community! Over the last few months we've been hard at work to bring new features, such as the state encryption and the removed block, as well as compatibility improvements to you. A few days ago we released the first preview version of these improvements as OpenTofu 1.7.0-alpha1.

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.

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/DeviceDownload link
Desktop Windows computer
(64-bit)
tofu_1.7.0-alpha1_windows_amd64.zip
MacOS
(Macbook M1 or higher; ARM64)
tofu_1.7.0-alpha1_darwin_arm64.tar.gz
MacOS
(Macbook pre-M1 or lower; AMD64)
tofu_1.7.0-alpha1_darwin_amd64.tar.gz
Intel/AMD Linux computer or server
(AMD64)
tofu_1.7.0-alpha1_linux_amd64.tar.gz
ARM-based Linux computer
or
Raspberry Pi 3 or higher

(ARM64)
tofu_1.7.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.

State encryption

State encryption is one of the flagship features of this release. We have prepared a full documentation for this feature.

To test this feature, please make a backup of your state file and then add the following configuration:

Code Block
terraform {
encryption {
key_provider "pbkdf2" "my_passphrase" {
passphrase = "" # Enter a passphrase here
}

method "aes_gcm" "my_method" {
keys = key_provider.pbkdf2.my_passphrase
}

state {
method = method.aes_gcm.my_method
fallback{} # Remove after the migration is complete.
}
}
}

You can migrate from an encrypted state file to an unencrypted one like this:

Code Block
terraform {
encryption {
key_provider "pbkdf2" "my_passphrase" {
passphrase = "" # Enter a passphrase here
}

method "aes_gcm" "my_method" {
keys = key_provider.pbkdf2.my_passphrase
}

state {
# Leave this block empty apart from the fallback block.
fallback{
method = method.aes_gcm.my_method
}
}
}
}

If you have access to an AWS account, you can also test the AWS Key-Management Service key provider. (Please note the AWS KMS pricing.)

Removed block

The removed block lets you remove a resource from the state file but keep it on the infrastructure. We have prepared a full documentation for this feature. You can test it by creating a resource first:

Code Block
resource "local_file" "test" {
content = "Hello world!"
filename = "test.txt"
}

After applying, you can replace the resource with a removed block:

Code Block
removed {
from = local_file.test
}

After the next apply, you will see that the local_file.test resource no longer exists in your state file, but the test.txt file should still exist on your disk. You can now remove the removed block safely.

Built-in function changes

This release also contains several new functions and changes to existing functions:

CLI changes

There are also several changes to the CLI:

  • tofu plan now has a -concise flag to shorten the plan output.
  • tofu console now works on Solaris and AIX.
  • The CLI now supports the XDG directory specification.
  • Aliases for state liststate ls, state mvstate move, state rmstate remove.

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.