first commit
This commit is contained in:
22
terraform/variables.tf
Normal file
22
terraform/variables.tf
Normal file
@@ -0,0 +1,22 @@
|
||||
variable "proxmox_api_url" {
|
||||
description = "The URL of the Proxmox API (without /api2/json)"
|
||||
type = string
|
||||
default = "https://proxmox.local:8006"
|
||||
}
|
||||
|
||||
variable "proxmox_token" {
|
||||
description = "The password for the Proxmox API"
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "proxmox_node" {
|
||||
description = "The name of the Proxmox node"
|
||||
type = string
|
||||
default = "pve"
|
||||
}
|
||||
|
||||
variable "ionos_username" {}
|
||||
variable "ionos_password" {}
|
||||
|
||||
variable "ssh_public_key" {}
|
||||
Reference in New Issue
Block a user