Added proxmox box as provider and latest version of bpg/proxmox as version

This commit is contained in:
2026-06-06 00:02:42 +02:00
commit edede0b568
3 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.envrc
.terraform
.terraform.*

4
providers.tf Normal file
View File

@@ -0,0 +1,4 @@
provider "proxmox" {
endpoint = "https://prox-console.tail1ad20b.ts.net/"
# api_token read from PROXMOX_VE_API_TOKEN
}

8
versions.tf Normal file
View File

@@ -0,0 +1,8 @@
terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.108.0"
}
}
}