21 lines
333 B
HCL
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
|
|
} |