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
22 lines
1.1 KiB
HCL
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
|
|
}
|