Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rgl/terraform-proxmox-debian-example
example on how to launch a debian vm using terraform in proxmox
https://github.com/rgl/terraform-proxmox-debian-example
debian proxmox terraform
Last synced: 12 days ago
JSON representation
example on how to launch a debian vm using terraform in proxmox
- Host: GitHub
- URL: https://github.com/rgl/terraform-proxmox-debian-example
- Owner: rgl
- Created: 2023-10-06T15:32:01.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-28T13:25:09.000Z (about 1 month ago)
- Last Synced: 2024-10-05T18:22:08.488Z (about 1 month ago)
- Topics: debian, proxmox, terraform
- Language: Shell
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Usage (from a Ubuntu 22.04 host)
[![Lint](https://github.com/rgl/terraform-proxmox-debian-example/actions/workflows/lint.yml/badge.svg)](https://github.com/rgl/terraform-proxmox-debian-example/actions/workflows/lint.yml)
Create and install the [base Debian 12 vagrant template](https://github.com/rgl/debian-vagrant).
Install Terraform:
```bash
# see https://github.com/hashicorp/terraform/releases
# renovate: datasource=github-releases depName=hashicorp/terraform
terraform_version='1.9.6'
wget "https://releases.hashicorp.com/terraform/$terraform_version/terraform_${$terraform_version}_linux_amd64.zip"
unzip "terraform_${$terraform_version}_linux_amd64.zip"
sudo install terraform /usr/local/bin
rm terraform terraform_*_linux_amd64.zip
```Set your proxmox details:
```bash
# see https://registry.terraform.io/providers/bpg/proxmox/latest/docs#argument-reference
# see https://github.com/bpg/terraform-provider-proxmox/blob/v0.65.0/proxmoxtf/provider/provider.go#L49-L56
cat >secrets-proxmox.sh <