aboutsummaryrefslogtreecommitdiff
path: root/opentofu/versions.tf
diff options
context:
space:
mode:
Diffstat (limited to 'opentofu/versions.tf')
-rw-r--r--opentofu/versions.tf14
1 files changed, 14 insertions, 0 deletions
diff --git a/opentofu/versions.tf b/opentofu/versions.tf
new file mode 100644
index 0000000..04a162a
--- /dev/null
+++ b/opentofu/versions.tf
@@ -0,0 +1,14 @@
+terraform {
+ required_version = ">= 1.8.0"
+
+ required_providers {
+ proxmox = {
+ source = "telmate/proxmox"
+ version = "3.0.1-rc6"
+ }
+ null = {
+ source = "hashicorp/null"
+ version = ">= 0.0.0"
+ }
+ }
+}