aboutsummaryrefslogtreecommitdiff
path: root/terraform
diff options
context:
space:
mode:
authorKumar Damani <me@kumardamani.net>2026-08-02 02:43:48 +0000
committerKumar Damani <me@kumardamani.net>2026-08-02 02:43:48 +0000
commitb595fd2b6fccbc81c445a9ddbd550fb1cee005cf (patch)
treeb00ca2128ce59fc641e57a4df0cf22e906332040 /terraform
parent6dce14b5494faeb5281447edc265f6dd7917adf5 (diff)
updated tf readme with mostly up-to-date stuff
Diffstat (limited to 'terraform')
-rwxr-xr-xterraform/README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/terraform/README.md b/terraform/README.md
index 11c1762..22c8f34 100755
--- a/terraform/README.md
+++ b/terraform/README.md
@@ -1,9 +1,9 @@
This part of the repo is responsible for creating
-our home-lab infrastructure using Terraform.
+our home-lab infrastructure using Terraform (actually OpenTofu).
# First time
```
-terraform init
+tofu init
cp con.env.example con.env
```
Modify `con.env` with your Proxmox access creds.
@@ -15,16 +15,16 @@ we cannot use the recommended approach dedicated TF user's API access.
```
source con.env
-terraform plan -out=tfplan
-#terraform plan -target="proxmox_lxc.testvm" -out=tfplan
+tofu plan -out=tfplan
+#tofu plan -target="proxmox_lxc.testvm" -out=tfplan
-terraform apply "tfplan"
+tofu apply "tfplan"
```
# Teardown
```
-terraform destroy
-terraform destroy -target="proxmox_lxc.testvm"
+tofu destroy
+tofu destroy -target="proxmox_lxc.testvm"
```
# A note about GPU pass-through