added e2e opentofu files
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2026-02-27 19:41:00 +01:00
parent d7b9f3d70b
commit 417d85488d
4 changed files with 115 additions and 0 deletions

26
tofu/e2e/versions.tf Normal file
View File

@@ -0,0 +1,26 @@
terraform {
required_version = ">= 1.6.0"
backend "s3" {
bucket = "tofu-state"
key = "e2e/${var.run_id}/terraform.tfstate"
region = "garage"
endpoints = {
s3 = "https://garage.gilmour109.de"
}
skip_credentials_validation = true
skip_metadata_api_check = true
skip_requesting_account_id = true
skip_region_validation = true
use_path_style = true
}
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "~> 0.96.0"
}
}
}