terraform-provider-proxmox/README.md

50 lines
678 B
Markdown
Raw Normal View History

2017-02-09 04:53:24 +00:00
# Proxmox 4 Terraform
Terraform provider plugin for proxmox
2017-02-09 21:36:31 +00:00
## Work in progress
### TODO
* document terraform-ubuntu1404-template creation process
* implement pre-provision phase
2017-02-09 04:53:24 +00:00
## Build
2017-02-09 21:39:14 +00:00
Requires https://github.com/Telmate/proxmox-api-go
2017-02-09 04:53:24 +00:00
```
go build -o terraform-provider-proxmox
2017-02-09 21:39:14 +00:00
cp terraform-provider-proxmox $GOPATH/bin
2017-02-09 04:53:24 +00:00
```
2017-02-09 21:36:31 +00:00
## Run
```
terraform apply
```
### Sample file
main.tf:
```
provider "proxmox" {
}
resource "proxmox_vm_qemu" "test" {
name = "tftest1.xyz.com"
desc = "tf description"
target_node = "proxmox1-xx"
ssh_forward_ip = "10.0.0.1"
clone = "terraform-ubuntu1404-template"
storage = "local"
cores = 3
sockets = 1
memory = 2560
}
```