Files
iac-homelab/terraform/prod/providers.tf
2025-06-09 11:58:11 +02: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.43.0"
}
}
}
provider "proxmox" {
endpoint = var.proxmox_url
api_token = var.proxmox_api_token
insecure = true
ssh {
agent = true
username = "root"
}
}