Files
tofu/providers.tf
VC 2d34c639dc
All checks were successful
terraform-lint / terraform-lint (push) Successful in 3s
: remove useless var for import
2025-03-20 17:59:35 +01:00

22 lines
321 B
HCL

terraform {
required_providers {
ovh = {
source = "ovh/ovh"
version = "1.6.0"
}
proxmox = {
source = "bpg/proxmox"
version = "0.71.0"
}
}
}
provider "ovh" {
endpoint = "ovh-eu"
}
provider "proxmox" {
endpoint = "https://serenor.dmz.mateu.be:8006"
insecure = "true"
}