aboutsummaryrefslogtreecommitdiff
path: root/docs/tofu.org
blob: 5747f9ebfc4f318801aa1e5b240c31451f6b0e20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
* 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