aboutsummaryrefslogtreecommitdiff
path: root/opentofu/provider.tf
diff options
context:
space:
mode:
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
}