diff --git a/variables.tf b/variables.tf index 304426c..938313b 100644 --- a/variables.tf +++ b/variables.tf @@ -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" {