aboutsummaryrefslogtreecommitdiff
path: root/opentofu/provider.tf
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2025-02-18 21:03:00 +0100
committerclyhtsuriva <aimeric@adjutor.xyz>2025-02-18 21:03:00 +0100
commit1e1a8a1f3f4a8586072d3e31d2bef9c27786d448 (patch)
tree95b1618e62c971265f1df55131e1a784d2e3d873 /opentofu/provider.tf
parent8af7efa1e03c1d37cf34197249e487348d382d82 (diff)
Replace proxmox provider telmate by bpg + remove k8s cluster (talos on the way)HEADmaster
Also changes the id of the packer images, now starting at the "end" (999), while VMs start at 100
Diffstat (limited to 'opentofu/provider.tf')
-rw-r--r--opentofu/provider.tf7
1 files changed, 3 insertions, 4 deletions
diff --git a/opentofu/provider.tf b/opentofu/provider.tf
index fade80e..cd476cb 100644
--- a/opentofu/provider.tf
+++ b/opentofu/provider.tf
@@ -1,6 +1,5 @@
provider "proxmox" {
- 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
- pm_tls_insecure = true
+ endpoint = var.proxmox_api_url
+ api_token = var.proxmox_api_token
+ insecure = true
}