Terraform¶
Terraform is used to provision and manage infrastructure as code.
Key Uses¶
- Define infrastructure in version-controlled code
- Automate VM, network, and storage provisioning
- Integrate with cloud and on-prem resources
Example¶
```hcl resource "proxmox_vm_qemu" "example" { # VM configuration here }