terraform { required_version = ">= 1.0" required_providers { hcloud = { source = "hetznercloud/hcloud" version = "1.64.0" } } } # The hcloud provider reads HCLOUD_TOKEN from the environment automatically. # Never put the token value in any .tf file or .tfvars — keep it in the shell # environment (export HCLOUD_TOKEN=...) or pass via TF_VAR_hcloud_token. provider "hcloud" {}