Terraform provider plugin for proxmox
Requires https://github.com/Telmate/proxmox-api-go
go build -o terraform-provider-proxmox
cp terraform-provider-proxmox $GOPATH/bin
Recommended ISO builder https://github.com/Telmate/terraform-ubuntu-proxmox-iso
terraform apply
main.tf:
provider "proxmox" {
}
resource "proxmox_vm_qemu" "test" {
name = "tftest1.xyz.com"
desc = "tf description"
target_node = "proxmox1-xx"
clone = "terraform-ubuntu1404-template"
storage = "local"
cores = 3
sockets = 1
memory = 2560
disk_gb = 4
nic = "virtio"
bridge = "vmbr1"
ssh_forward_ip = "10.0.0.1"
ssh_user = "terraform"
ssh_private_key = <<EOF
-----BEGIN RSA PRIVATE KEY-----
private ssh key terraform
-----END RSA PRIVATE KEY-----
EOF
os_type = "ubuntu"
os_network_config = <<EOF
auto eth0
iface eth0 inet dhcp
EOF
}