Files
terraform/provider.tf
2025-10-18 10:08:12 -04:00

21 lines
333 B
HCL

terraform {
required_version = ">= 1.13.0"
required_providers{
proxmox = {
source = "/telmate/proxmox"
}
}
}
variable "proxmox_api_url" {
type = string
}
variable "proxmox_api_token_id" {
type = string
sensitive = true
}
variable "proxmox_api_token_secret" {
type = string
sensitive = true
}