Files
Terraform/provider.tf
2025-09-29 21:45:27 -05:00

48 lines
788 B
HCL

# Proxmox Provider
# ---
# Initial Provider Configuration for Proxmox
terraform {
#required_version = "= 0.13.0"
required_providers {
proxmox = {
source = "Telmate/proxmox"
version = "3.0.2-rc03"
}
netbird = {
source = "registry.terraform.io/netbirdio/netbird"
version = "0.0.4"
}
}
}
variable "proxmox_api_url" {
type = string
}
variable "pm_user" {
type = string
}
variable "pm_pass" {
type = string
}
provider "proxmox" {
pm_api_url = var.proxmox_api_url
pm_user = var.pm_user
pm_password = var.pm_pass
# (Optional) Skip TLS Verification
pm_tls_insecure = true
}
terraform {
#credentials are stored in semaphore secrets
backend "pg" {}
}