# Proxmox 4 Terraform Terraform provider plugin for proxmox ## Working prototype ## Build Requires https://github.com/Telmate/proxmox-api-go ``` go build -o terraform-provider-proxmox cp terraform-provider-proxmox $GOPATH/bin cp terraform-provider-proxmox $GOPATH/bin/terraform-provisioner-proxmox ``` Note: this plugin is both a provider and provisioner in one, which is why it needs to be in the $GOPATH/bin/ twice. Recommended ISO builder https://github.com/Telmate/terraform-ubuntu-proxmox-iso ## Run ``` terraform apply ``` ### Sample file main.tf: ``` provider "proxmox" { pm_tls_insecure = true } 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 = <