This repository has been archived on 2024-11-12. You can view files and clone it, but cannot push or open issues or pull requests.
iac/proxmox.tf
Matthew Baggett b485c5664b
Some checks failed
Trunk Check / Trunk Check Runner (push) Failing after 1s
Start adding proxmox
2024-08-23 23:56:34 +02:00

15 lines
No EOL
338 B
HCL

variable "proxmox_endpoint" {
type = string
}
variable "proxmox_token_id" {
type = string
}
variable "proxmox_token_secret" {
type = string
}
provider "proxmox" {
pm_debug = true
pm_api_url = var.proxmox_endpoint
pm_api_token_id = var.proxmox_token_id
pm_api_token_secret = var.proxmox_token_secret
}