Step one attempt

This commit is contained in:
2025-10-18 10:08:12 -04:00
parent a6662b7b4a
commit e824649729
2 changed files with 48 additions and 0 deletions

21
provider.tf Normal file
View File

@@ -0,0 +1,21 @@
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
}