Files
server/infra/versions.tf
T

18 lines
322 B
Terraform

terraform {
required_version = ">= 1.6.0"
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.45"
}
local = {
source = "hashicorp/local"
version = "~> 2.5"
}
}
}
# Reads the token from the HCLOUD_TOKEN environment variable.
provider "hcloud" {}