Terraform provider for Proxmox VE
With this custom terraform provider plugin you can manage your Proxmox resources.
Add plugin binary to your ~/.terraformrc file
providers {
proxmox = "/path/to/your/bin/terraform-provider-proxmox"
}
provider "proxmox" {
host = "${var.proxmox_host}"
username = "${var.proxmox_username}"
password = "${var.proxmox_password}"
}
The following arguments are required.
host
- API hostusername
- username for accessing Proxmox Control Panel (like root@pam).password
- password for accessing Proxmox Control Panel.
work in progress
This project is based on the goproxmox library which is under active development. So if you want a new feature feel free to send a pull request for the library.