blob: 5747f9ebfc4f318801aa1e5b240c31451f6b0e20 (
plain) (
tree)
|
|
* Tofu/terranix
I use terranix to manage some configurations with terraform/tofu.
I usually start by cleaning the working directory:
#+begin_src shell
rm -rf .terraform*
#+end_src
Then we can =init=, =plan=, and =build=:
#+begin_src shell
nix run .#tf -- init
nix run .#tf -- plan
nix run .#tf -- build
#+end_src
|