first commit

This commit is contained in:
2025-08-01 08:43:04 +02:00
commit 48a734ed82
38 changed files with 2044 additions and 0 deletions

22
terraform/variables.tf Normal file
View File

@@ -0,0 +1,22 @@
variable "proxmox_api_url" {
description = "The URL of the Proxmox API (without /api2/json)"
type = string
default = "https://proxmox.local:8006"
}
variable "proxmox_token" {
description = "The password for the Proxmox API"
type = string
sensitive = true
}
variable "proxmox_node" {
description = "The name of the Proxmox node"
type = string
default = "pve"
}
variable "ionos_username" {}
variable "ionos_password" {}
variable "ssh_public_key" {}