diff options
| author | Kumar Damani <me@kumardamani.net> | 2026-08-02 02:43:48 +0000 |
|---|---|---|
| committer | Kumar Damani <me@kumardamani.net> | 2026-08-02 02:43:48 +0000 |
| commit | b595fd2b6fccbc81c445a9ddbd550fb1cee005cf (patch) | |
| tree | b00ca2128ce59fc641e57a4df0cf22e906332040 /terraform/README.md | |
| parent | 6dce14b5494faeb5281447edc265f6dd7917adf5 (diff) | |
updated tf readme with mostly up-to-date stuff
Diffstat (limited to 'terraform/README.md')
| -rwxr-xr-x | terraform/README.md | 14 |
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 |
