nixos-config/machines/unifi/variables.tf

18 lines
349 B
Terraform
Raw Normal View History

2023-09-06 16:56:20 +02:00
variable "proxmox_token_id" {
description = "Proxmox API token ID"
type = string
sensitive = true
}
variable "proxmox_token_secret" {
description = "Proxmox API token secret"
type = string
sensitive = true
}
variable "proxmox_api_url" {
description = "Proxmox API URL"
type = string
sensitive = true
}