Files
terraform/variables.tf

29 lines
710 B
HCL

variable "proxmox_api_token" {
description = "Token to connect Proxmox API"
type = string
}
variable "ssh_public_key" {
description = "SSH client public key"
type = string
}
variable "proxmox_endpoint" {
description = "Proxmox endpoint"
type = string
}
variable "proxmox_host_ip" {
description = "Proxmox ip for backup nfs share"
type = string
}
variable "gateway_repository" {
description = "Gateway repository relative path (from this terraform repository), for traefik automatic config generation."
type = string
}
variable "gateway_token" {
description = "Gateway webhook token same in /module/apps/gateway/.env"
type = string
}