chore: add Terraform config for GlusterFS

This commit is contained in:
Benedikt Penner
2026-03-14 12:31:44 +01:00
parent 62abbf35fd
commit 1de82598cf
15 changed files with 664 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
terraform {
required_providers {
proxmox = {
source = "telmate/proxmox"
version = "3.0.2-rc07"
}
}
}
variable "proxmox_api_url" {
type = string
}
variable "proxmox_api_token_id" {
type = string
sensitive = true
}
variable "proxmox_api_token_secret" {
type = string
sensitive = true
}
provider "proxmox" {
pm_api_url= var.proxmox_api_url
pm_api_token_id = var.proxmox_api_token_id
pm_api_token_secret = var.proxmox_api_token_secret
pm_tls_insecure = true
}