aboutsummaryrefslogtreecommitdiff
path: root/opentofu/provider.tf
diff options
context:
space:
mode:
Diffstat (limited to 'opentofu/provider.tf')
-rw-r--r--opentofu/provider.tf17
1 files changed, 17 insertions, 0 deletions
diff --git a/opentofu/provider.tf b/opentofu/provider.tf
new file mode 100644
index 0000000..b78c91a
--- /dev/null
+++ b/opentofu/provider.tf
@@ -0,0 +1,17 @@
+terraform {
+ required_version = ">= 0.13.0"
+
+ required_providers {
+ proxmox = {
+ source = "telmate/proxmox"
+ version = "3.0.1-rc6"
+ }
+ }
+}
+
+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
+}