summaryrefslogtreecommitdiff
path: root/terraform/variables.tf
blob: 4c23f69f6434f43fac4e8868a588c779276df128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
variable "proxmox_endpoint" {
  description = "Adres API Proxmox"
  type        = string
  default     = "https://pve:8006/api2/json"
}

variable "proxmox_api_token" {
  description = "API Token user@realm!token=secret"
  type        = string
  sensitive   = true
}


variable "node_name" {
  description = "Nazwa node Proxmox"
  type        = string
  default     = "pve"
}