aboutsummaryrefslogtreecommitdiff
path: root/opentofu/versions.tf
blob: 7a7514bcd3c5dce1bf6b463b1385334678e5361b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
terraform {
  required_version = ">= 1.8.0"

  required_providers {
    proxmox = {
      source  = "bpg/proxmox"
      version = "0.75.0"
    }
    local = {
      source  = "hashicorp/local"
      version = ">= 2.4.0"
    }
  }
}