Files
Webseite_Stines/terraform/variables.tf
T

51 lines
1.1 KiB
Terraform

variable "proxmox_host" {
description = "Proxmox API URL"
type = string
}
variable "proxmox_token_id" {
description = "Proxmox API Token ID (user@realm!tokenid)"
type = string
}
variable "proxmox_token_secret" {
description = "Proxmox API Token Secret"
type = string
sensitive = true
}
variable "proxmox_node" {
description = "Ziel-Proxmox-Node"
type = string
default = "pve"
}
variable "lxc_ostemplate" {
description = "Pfad zum LXC-Template"
type = string
default = "local:vztmpl/debian-12-standard_12.7-1_amd64.tar.zst"
}
variable "lxc_storage" {
description = "Storage fuer LXC rootfs"
type = string
default = "local-lvm"
}
variable "staging_ip" {
description = "Statische IP fuer Staging-LXC (CIDR)"
type = string
default = "dhcp"
}
variable "staging_gw" {
description = "Gateway fuer Staging-LXC"
type = string
default = ""
}
variable "ssh_public_key" {
description = "SSH Public Key fuer den deploy-User im LXC"
type = string
}