little update

This commit is contained in:
Alex Devera 2025-10-03 09:24:53 +03:00
parent bc0e7cf3d2
commit 1ca1240900

View file

@ -2,13 +2,13 @@
variable "proxmox_api_url" {
description = "Proxmox API URL"
type = string
default = "https://pve01.cloud.local:8006/api2/json"
default = "https://192.168.31.30:8006/api2/json"
}
variable "proxmox_user" {
description = "Proxmox user for API access"
type = string
default = "terraform@pam"
default = "tofu@pve"
}
variable "proxmox_token_id" {
@ -32,14 +32,14 @@ variable "proxmox_tls_insecure" {
variable "proxmox_node" {
description = "Proxmox node name where VM will be created"
type = string
default = "pve01"
default = "nexus"
}
# VM Template Configuration
variable "vm_template" {
description = "Name of the Proxmox template to clone"
type = string
default = "ubuntu-24.04-template"
default = "114"
}
@ -129,7 +129,7 @@ variable "vm_network_bridge" {
variable "vm_disk_type" {
description = "Disk type for the VM"
type = string
default = "scsi"
default = "scsi0"
}
variable "vm_disk_storage" {