return provider to telmate

This commit is contained in:
tolerryan
2025-05-04 23:50:27 -05:00
parent 2bf40c1155
commit fbfc23ab03

View File

@@ -8,8 +8,8 @@ terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.77.0"
source = "Telmate/proxmox"
version = "3.0.1-rc4"
}
}
}
@@ -22,21 +22,17 @@ variable "proxmox_api_token_id" {
type = string
}
#variable "proxmox_api_token_secret" {
# type = string
#}
variable "proxmox_api_token_secret" {
type = string
}
provider "proxmox" {
#pm_api_url = var.proxmox_api_url
endpoint = var.proxmox_api_url
#pm_api_token_id = var.proxmox_api_token_id
api_token = var.proxmox_api_token_id
#
#pm_api_token_secret = var.proxmox_api_token_secret
pm_api_url = var.proxmox_api_url
pm_api_token_id = var.proxmox_api_token_id
pm_api_token_secret = var.proxmox_api_token_secret
# (Optional) Skip TLS Verification
#pm_tls_insecure = true
insecure = true
pm_tls_insecure = true
}