quarkshologridledger/infra/versions.tf
Pedro Faria da Costa b6bc68de23
Some checks are pending
CI / tongo-core (push) Waiting to run
CI / web-terminal (push) Waiting to run
Deploy / build-and-push (push) Waiting to run
Deploy / deploy (push) Blocked by required conditions
Infrastructure / plan (push) Waiting to run
Infrastructure / apply (push) Blocked by required conditions
add infra
2026-07-05 23:44:51 +01:00

22 lines
1.1 KiB
HCL

# ──────────────────────────────────────────────────────────────
# Quark's Holo-Grid Ledger — Provider & version constraints
# ──────────────────────────────────────────────────────────────
terraform {
required_version = ">= 1.8.0"
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.49"
}
}
}
# ──────────────────────────────────────────────────────────────
# Hetzner Cloud provider — authenticated via API token
# ──────────────────────────────────────────────────────────────
provider "hcloud" {
token = var.hcloud_token
}