diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-02-02 19:51:54 +0100 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-02-02 19:51:54 +0100 |
commit | e1688aa9f2c3cc09f05c007c921bc24ed566e8e8 (patch) | |
tree | e02fcfe7ed41855cf71c90f74aeec5e1630886ba /opentofu/versions.tf | |
parent | 93f98bb6051fa702458f6853873a4443a401ba87 (diff) |
opentofu : Moving version definition from provider.tf to versions.tf
Diffstat (limited to 'opentofu/versions.tf')
-rw-r--r-- | opentofu/versions.tf | 14 |
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" + } + } +} |