infra
This commit is contained in:
parent
5a409b3014
commit
0347f4d325
18 changed files with 441 additions and 0 deletions
19
infrastructure/proxmox/variables.tf
Normal file
19
infrastructure/proxmox/variables.tf
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
variable "pm_api_url" {
|
||||
description = "The URL of the Proxmox API (e.g., https://192.168.1.10:8006/api2/json)"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "pm_node" {
|
||||
description = "The Proxmox node name where VMs will be deployed (e.g., 'pve')"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "pm_api_token_id" {
|
||||
description = "Proxmox API token ID"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "pm_api_token_secret" {
|
||||
description = "Proxmox API token secret"
|
||||
type = string
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue