aboutsummaryrefslogtreecommitdiff
path: root/terraform
diff options
context:
space:
mode:
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