aboutsummaryrefslogtreecommitdiff
path: root/opentofu/versions.tf
blob: c11e217f0ecfe3ac0dfb37311eda4efcc5e00b9b (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.90.0"
    }
    local = {
      source  = "hashicorp/local"
      version = ">= 2.4.0"
    }
  }
}