aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2024-02-01 00:33:48 +0100
committerJulien Dessaux2024-02-01 00:33:48 +0100
commit83dd6ac73838d52eee8e41b22c561069acb633ec (patch)
treeeaa155f97b0e559a240b29c5a5b0ec887c3e1e45
parentAdded a shell.nix (diff)
downloadwww-83dd6ac73838d52eee8e41b22c561069acb633ec.tar.gz
www-83dd6ac73838d52eee8e41b22c561069acb633ec.tar.bz2
www-83dd6ac73838d52eee8e41b22c561069acb633ec.zip
Added opentofu blog article
-rw-r--r--content/blog/terraform/tofu.md42
1 files changed, 42 insertions, 0 deletions
diff --git a/content/blog/terraform/tofu.md b/content/blog/terraform/tofu.md
new file mode 100644
index 0000000..48ec621
--- /dev/null
+++ b/content/blog/terraform/tofu.md
@@ -0,0 +1,42 @@
+---
+title: Testing opentofu
+description: Little improvements and what it means for small providers like mine
+date: 2024-01-31
+tags:
+- Eventline
+- opentofu
+- terraform
+---
+
+## Introduction
+
+This January, the opentofu project announced the general availability of their terraform fork. Not much changes for now between terraform and opentofu (and that is a good thing!), as far as I can tell the announcement was mostly about the new provider registry and of course the truly open source license.
+
+## Registry change
+
+The opentofu registry already has all the providers you are accustomed to, but your state will need to be migrated with:
+```sh
+tofu init -upgrade`
+```
+
+For some providers you might encounter the following warning:
+```
+- Installed cloudflare/cloudflare v4.23.0. Signature validation was skipped due to the registry not containing GPG keys for this provider
+```
+
+This is harmless and will resolve itself when the providers' developers provide the public GPG key used to sign their releases to the opentofu registry. The process is very simple thanks to their GitHub workflow automation.
+
+## Little improvements
+
+- `tofu init` seems significantly faster than `terraform init`.
+- You never could interrupt a terraform plan with `C-C`. I am so very glad to see that it is not a problem with opentofu! This really needs more advertising: proper Unix signal handling is like a superpower that is too often ignored by modern software.
+- `tofu test` can be used to assert things about your state and your configuration. I did not play with it yet but it opens [a whole new realm of possibilities](https://opentofu.org/docs/cli/commands/test/)!
+- `tofu import` can use expressions referencing other values or resources attributes, this is a big deal when handling massive imports!
+
+## Eventline terraform provider
+
+I did the required pull requests on the [opentofu registry](https://github.com/opentofu/registry) to have my [Eventline provider](https://github.com/adyxax/terraform-provider-eventline) all fixed up and ready to rock!
+
+## Conclusion
+
+I hope opentofu really takes off, the little improvements they made already feel like a breath of fresh air. Terraform could be so much more!