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.
27 lines
613 B
HCL
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"
|
|
}
|
|
}
|