Files
iac-homelab/terraform/prod/providers.tf
darnodo 4623674632 chore(deps): upgrade bpg/proxmox provider to v0.89.0
Updates the `bpg/proxmox` Terraform provider from version 0.43.0 to 0.89.0 in the production lock file to pull in the latest upstream changes.

Additionally, applies automatic markdown formatting to tables in `docs/proxmox-setup.md` to align columns and improve readability.
2025-12-07 13:47:14 +01:00

27 lines
613 B
HCL

# ================================================================
# Déclaration des Providers Terraform
#
# Ce fichier indique à Terraform quels "plugins" il doit
# télécharger pour interagir avec les API externes (Proxmox, etc.)
# et comment les configurer.
# ================================================================
terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.89.0"
}
}
}
provider "proxmox" {
endpoint = var.proxmox_url
api_token = var.proxmox_api_token
insecure = true
ssh {
agent = true
username = "root"
}
}