infrastructure/pve01.wheatley.in/templates/main.tf

26 lines
578 B
Terraform
Raw Normal View History

2025-12-20 19:35:37 +01:00
terraform {
backend "s3" {
bucket = "13225-wheatley-states"
key = "pve01-templates.tfstate"
region = "main"
skip_credentials_validation = true
skip_metadata_api_check = true
skip_region_validation = true
force_path_style = true
}
}
provider "proxmox" {
endpoint = var.proxmox_endpoint
api_token = var.proxmox_api_token
ssh {
agent = true
username = "tofu"
}
}
module "talos" {
source = "./talos"
2026-04-17 20:31:58 +02:00
talos_versions = ["1.12.6"]
2025-12-20 19:35:37 +01:00
}