little update
This commit is contained in:
parent
bc0e7cf3d2
commit
1ca1240900
1 changed files with 5 additions and 5 deletions
10
variables.tf
10
variables.tf
|
@ -2,13 +2,13 @@
|
||||||
variable "proxmox_api_url" {
|
variable "proxmox_api_url" {
|
||||||
description = "Proxmox API URL"
|
description = "Proxmox API URL"
|
||||||
type = string
|
type = string
|
||||||
default = "https://pve01.cloud.local:8006/api2/json"
|
default = "https://192.168.31.30:8006/api2/json"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "proxmox_user" {
|
variable "proxmox_user" {
|
||||||
description = "Proxmox user for API access"
|
description = "Proxmox user for API access"
|
||||||
type = string
|
type = string
|
||||||
default = "terraform@pam"
|
default = "tofu@pve"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "proxmox_token_id" {
|
variable "proxmox_token_id" {
|
||||||
|
@ -32,14 +32,14 @@ variable "proxmox_tls_insecure" {
|
||||||
variable "proxmox_node" {
|
variable "proxmox_node" {
|
||||||
description = "Proxmox node name where VM will be created"
|
description = "Proxmox node name where VM will be created"
|
||||||
type = string
|
type = string
|
||||||
default = "pve01"
|
default = "nexus"
|
||||||
}
|
}
|
||||||
|
|
||||||
# VM Template Configuration
|
# VM Template Configuration
|
||||||
variable "vm_template" {
|
variable "vm_template" {
|
||||||
description = "Name of the Proxmox template to clone"
|
description = "Name of the Proxmox template to clone"
|
||||||
type = string
|
type = string
|
||||||
default = "ubuntu-24.04-template"
|
default = "114"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -129,7 +129,7 @@ variable "vm_network_bridge" {
|
||||||
variable "vm_disk_type" {
|
variable "vm_disk_type" {
|
||||||
description = "Disk type for the VM"
|
description = "Disk type for the VM"
|
||||||
type = string
|
type = string
|
||||||
default = "scsi"
|
default = "scsi0"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "vm_disk_storage" {
|
variable "vm_disk_storage" {
|
||||||
|
|
Loading…
Reference in a new issue