From e1688aa9f2c3cc09f05c007c921bc24ed566e8e8 Mon Sep 17 00:00:00 2001 From: clyhtsuriva Date: Sun, 2 Feb 2025 19:51:54 +0100 Subject: opentofu : Moving version definition from provider.tf to versions.tf --- opentofu/versions.tf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 opentofu/versions.tf (limited to 'opentofu/versions.tf') 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" + } + } +} -- cgit v1.2.3