Files
tofu/providers.tf
Clément VÉRET 12e80f6a48
All checks were successful
terraform-lint / terraform-lint (push) Successful in 4s
♻️: store metadata to S3
2025-09-04 09:57:02 +02:00

28 lines
576 B
HCL

terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.76.0"
}
}
backend "s3" {
bucket = "opentofu"
region = "garage"
key = "homelab/terraform.tfstate"
endpoints = {
s3 = "https://garage.mateu.be"
}
use_path_style = true
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
skip_metadata_api_check = true
}
}
provider "proxmox" {
endpoint = "https://serenor.dmz.mateu.be:8006"
insecure = "true"
}