Terraform - Hcloud - Talos
New to Hetzner? Get 20€ credit (and support this project)!
If this module saved you time or money, consider supporting ongoing maintenance.
This repository contains a Terraform module for creating a Kubernetes cluster with Talos in the Hetzner Cloud.
- Talos is a modern OS for Kubernetes. It is designed to be secure, immutable, and minimal.
- Hetzner Cloud is a cloud hosting provider with excellent Terraform support and competitive pricing.
[!WARNING] This module is under active development. Not all features are compatible with each other yet. Known issues are listed in the Known Issues section. If you find a bug or have a feature request, please open an issue.
Goals 🚀
| Goals | Status | Description |
|---|---|---|
| Production ready | ✅ | Designed around the recommendations from the Talos Production Clusters. You still need to handle DNS/LB setup, backups, and operations. |
| Use private networks for the internal communication of the cluster | ✅ | Hetzner Cloud Networks are used for internal node-to-node communication. |
| Secure API Exposure | ✅ | The Kubernetes and Talos APIs are exposed to the public internet but secured via firewall rules. By default (firewall_use_current_ip = true), only traffic from your current IP address is allowed. |
| Possibility to change all CIDRs of the networks | ✅ | All network CIDRs (network, node, pod, service) can be customized. |
| Configure the Cluster optimally to run in the Hetzner Cloud | ✅ | This includes manual configuration of the network devices and not via DHCP, provisioning of Floating IPs (VIP), etc. |
Information about the Module
- A lot of information can be found directly in the descriptions of the variables.
- You can configure the module to create a cluster with 1, 3 or 5 control planes and n workers or only the control planes.
- It allows scheduling pods on the control planes if no workers are created.
- It has Multihoming configuration (etcd and kubelet listen on public and private IP).
- It uses KubePrism
for internal API server access (
127.0.0.1:7445) from within the cluster nodes. - Public API Endpoint:
- You can define a stable public endpoint for your cluster using the
cluster_api_hostvariable ( e.g.,kube.mydomain.com). - If you set
cluster_api_host, you must create a DNS A record for this hostname pointing to the public IP address you want clients to use. This could be:- The Hetzner Floating IP (if
enable_floating_ip = true). - The IP of an external TCP load balancer you configure separately (pass-through, no TLS termination).
- The public IP of a specific control plane node (less recommended for multi-node control planes).
- The Hetzner Floating IP (if
- The generated
kubeconfigwill use this hostname ifkubeconfig_endpoint_mode = "public_endpoint". - The generated
talosconfiguses direct per-node IPs by default and can optionally use endpoint hostnames viatalosconfig_endpoints_mode. - Note:
cluster_api_hostis the Kubernetes API endpoint (TCP/6443). Talos API access uses TCP/50000 and is configured separately viatalosconfig_endpoints_mode.
- You can define a stable public endpoint for your cluster using the
- Internal API Endpoint:
- For internal communication between cluster nodes, Talos uses an internal API hostname.
By default this is
kube.[cluster_domain](e.g.,kube.cluster.local), but you can override it viacluster_api_host_private. - If
enable_alias_ip = true(the default), this module automatically configures/etc/hostsentries on each node to resolve the internal API hostname to the private alias IP (10.0.1.100by default). This ensures reliable internal communication. - If
enable_alias_ip = false, you must provide a working private DNS record forcluster_api_host_privateyourself (or accept the single-node fallback when using a single control plane). - If you access the cluster from a workstation over VPN/private networking, consider creating a private (split-horizon)
DNS record for a resolvable name (e.g.,
kube.example.com->10.0.1.100) and setcluster_api_host_privateto that name. This prevents client-side DNS failures when Talos embeds the internal endpoint into kubeconfig.
- For internal communication between cluster nodes, Talos uses an internal API hostname.
By default this is
- Default Behavior (if
cluster_api_hostis not set):- If you don't set
cluster_api_host, the generatedkubeconfigwill use an IP address directly as the endpoint (controlled bykubeconfig_endpoint_mode, defaulting to the first control plane's public IP or the Floating IP). talosconfigendpoints are configured separately viatalosconfig_endpoints_mode.- Internal communication will still use the internal API hostname (defaults to
kube.[cluster_domain]) ifenable_alias_ip = true.
- If you don't set
- Private Bootstrap (
bootstrap_endpoint_mode):- When running Terraform from a host with VPN/private network access (WireGuard, Tailscale, site-to-site VPN),
set
bootstrap_endpoint_mode = "private_ip"so Terraform bootstraps and health-checks the cluster via private IPs instead of public IPs. - Combine with
disable_public_ipv4 = trueto provision nodes without public IPv4 addresses entirely. - See the WireGuard VPN example for a tested setup using Talos's built-in WireGuard.
- When running Terraform from a host with VPN/private network access (WireGuard, Tailscale, site-to-site VPN),
set
Additional installed software in the cluster
Cilium
- Cilium is a modern, efficient, and secure networking and security solution for Kubernetes.
- Cilium is used as the CNI instead of the default Flannel.
- It provides a lot of features like Network Policies, Load Balancing, and more.
[!IMPORTANT] The Cilium version (
cilium_version) has to be compatible with the Kubernetes (kubernetes_version) version.
[!TIP] After initial cluster bootstrap, you can set
deploy_cilium = false(anddeploy_prometheus_operator_crds = falseif you used it) to hand off management to GitOps tools (e.g., Argo CD, Flux). Runterraform applyonce after toggling: Terraform removes these resources from state without deleting them from the cluster. This works because the module useskubectl_manifestwithapply_only = true, so Terraform does not delete these manifests on destroy.
Hcloud Cloud Controller Manager
- Updates the
Nodeobjects with information about the server from the Cloud, like instance Type, Location, Server ID, IPs. - Cleans up stale
Nodeobjects when the server is deleted in the API. - Routes traffic to the pods through Hetzner Cloud Networks. Removes one layer of indirection.
- Watches Services with
type: LoadBalancerand creates Hetzner Cloud Load Balancers for them, adds Kubernetes Nodes as targets for the Load Balancer.
[!TIP] After initial cluster bootstrap, you can set
deploy_hcloud_ccm = falseto hand off management to GitOps tools (e.g., Argo CD, Flux). Runterraform applyonce after toggling: Terraform removes these resources from state without deleting them from the cluster. This works because the module useskubectl_manifestwithapply_only = true, so Terraform does not delete these manifests on destroy.
Talos Cloud Controller Manager
- Applies labels to the nodes.
- Validates and approves node CSRs.
- In DaemonSet mode: CCM will use hostNetwork and current node to access kubernetes/talos API
Tailscale (Optional)
- The Talos Image MUST be created with the tailscale extension when
tailscale.enabledis set to true. - Tailscale can be enabled as a system extension on all nodes
- Provides secure, encrypted networking between your nodes and other devices in your Tailscale network
- Makes cluster nodes accessible via their Tailscale IPs from anywhere
- Requires a valid Tailscale auth key to be provided in the configuration
Prerequisites
Required Software
Optional Legacy Software
- packer for the deprecated
_packer/workflow, which is no longer maintained
Recommended Software
Hetzner Cloud
[!TIP] New to Hetzner Cloud? Use this referral link to get 20€ credit and support this project.
- Create a new project in the Hetzner Cloud Console
- Create a new API token in the project
- You can store the token in the environment variable
HCLOUD_TOKENor use it in the following commands/terraform files.
Usage
1. Create Talos Images with terraform-provider-imager (Recommended)
[!TIP] You can use official Hetzner Talos ISOs by setting
talos_iso_id_x86and/ortalos_iso_id_arm(but these are usually outdated – check the versions!). List Talos ISO IDs:hcloud iso listCheck the Hetzner changelog for current Talos ISO IDs: https://docs.hetzner.cloud/changelog You can also use custom Talos image by settingtalos_image_id_x86and/ortalos_image_id_arm. List Talos image IDs:hcloud image list
[!WARNING] Prefer custom Talos images/snapshots created with
terraform-provider-imagerover the official Hetzner Talos ISOs. Some Hetzner-provided Talos ISOs have booted Talos inmetalmode instead ofhcloud, which leads to incorrect nodeproviderIDs such astalos://metal/.... This breakshcloud-cloud-controller-managerroute creation and can cause pod-to-pod networking failures across nodes. If you still usetalos_iso_id_x86ortalos_iso_id_arm, verify the current ISO version carefully first. See #417.
Before deploying with Terraform, you need Talos OS images (snapshots) available in your Hetzner Cloud project. The maintained workflow is to create those snapshots directly from Terraform with the companion provider hcloud-talos/imager.
terraform {
required_providers {
imager = {
source = "hcloud-talos/imager"
}
}
}
provider "imager" {
token = var.hcloud_token
}
resource "imager_image" "talos_x86" {
image_url = "https://factory.talos.dev/image/<schematic-id>/<talos-version>/hcloud-amd64.raw.xz"
architecture = "x86"
labels = {
version = var.talos_version
}
}
Pass the resulting snapshot IDs into this module with talos_image_id_x86 and talos_image_id_arm. A complete runnable example is available in examples/extended.
2. Packer Workflow (Deprecated, No Longer Maintained)
[!WARNING] The
_packer/workflow is deprecated and no longer maintained. Usehcloud-talos/imagerfor new clusters and future updates.
- Purpose: Creates ARM and x86 Talos OS snapshots compatible with Hetzner Cloud.
- Location: All Packer-related files are in the
_packer/directory. - Authentication: Requires your Hetzner Cloud API token (set the
HCLOUD_TOKENenvironment variable or enter it when prompted by the build script). - Execution: Run the
create.shscript from the root of the repository:./_packer/create.sh - Customization: You can build standard Talos images or create custom images with additional system extensions using the Talos Image Factory.
- Versioning: Ensure the
talos_versionused during the Packer build matches thetalos_versionvariable set in your Terraform configuration to avoid potential incompatibilities.
Legacy Instructions: If you still need the deprecated Packer flow, refer to
_packer/README.md.
3. Deploy the Cluster with Terraform
Use the module as shown in the following working minimal example:
[!NOTE] Verify version compatibility before deploying:
[!NOTE] Actually, your current IP address has to have access to the nodes during the creation of the cluster.
module "talos" {
source = "hcloud-talos/talos/hcloud"
# Find the latest version on the Terraform Registry:
# https://registry.terraform.io/modules/hcloud-talos/talos/hcloud
version = "<latest-version>" # Replace with the latest version number
talos_version = "v1.12.2" # The version of talos features to use in generated machine configurations
# Optional: use official Hetzner Talos ISO IDs (no custom Packer image required)
# talos_iso_id_x86 = "<x86-iso-id>"
# talos_iso_id_arm = "<arm-iso-id>"
# Optional: use custom Talos image IDs (snapshots) created by terraform-provider-imager instead
# talos_image_id_x86 = "<x86-image-id>"
# talos_image_id_arm = "<arm-image-id>"
hcloud_token = "your-hcloud-token"
# If true, the current IP address will be used as the source for the firewall rules.
# ATTENTION: to determine the current IP, a request to a public service (https://ipv4.icanhazip.com) is made.
# If false, you have to provide your public IP address (as list) in the variable `firewall_kube_api_source` and `firewall_talos_api_source`.
firewall_use_current_ip = true
cluster_name = "dummy.com"
location_name = "fsn1"
control_plane_nodes = [
{
id = 1
type = "cax11"
}
]
}
Or a more advanced example:
module "talos" {
source = "hcloud-talos/talos/hcloud"
# Find the latest version on the Terraform Registry:
# https://registry.terraform.io/modules/hcloud-talos/talos/hcloud
version = "<latest-version>" # Replace with the latest version number
# Use versions compatible with each other and supported by the module/Talos
talos_version = "v1.12.2"
kubernetes_version = "1.35.0"
cilium_version = "1.16.2"
hcloud_token = "your-hcloud-token"
cluster_name = "dummy.com"
cluster_domain = "cluster.dummy.com.local"
cluster_api_host = "kube.dummy.com"
firewall_use_current_ip = false
firewall_kube_api_source = ["your-ip"]
firewall_talos_api_source = ["your-ip"]
location_name = "fsn1"
control_plane_nodes = [
{
id = 1
type = "cax11"
},
{
id = 2
type = "cax11"
},
{
id = 3
type = "cax11"
}
]
control_plane_allow_schedule = true
worker_nodes = [
{
id = 1
type = "cax21"
},
{
id = 2
type = "cax21"
},
{
id = 3
type = "cax21"
}
]
network_ipv4_cidr = "10.0.0.0/16"
node_ipv4_cidr = "10.0.1.0/24"
pod_ipv4_cidr = "10.0.16.0/20"
service_ipv4_cidr = "10.0.8.0/21"
# Enable Tailscale integration
tailscale = {
enabled = true
auth_key = "tskey-auth-xxxxxxxxxxxx" # Your Tailscale auth key
}
}
Endpoint Configuration Examples
These snippets show only the endpoint- and access-related settings. Combine them with the required module inputs from the examples above.
VPN-only (private bootstrap with WireGuard)
Use Talos's built-in WireGuard to bootstrap and manage the cluster over private IPs. No site-to-site VPN VM or external DNS needed.
On the cluster side (added as a machine config patch):
talos_control_plane_extra_config_patches = [
yamlencode({
apiVersion = "v1alpha1"
kind = "WireguardConfig"
name = "wg0"
privateKey = "<base64-node-private-key>"
listenPort = 51820
addresses = [{ address = "10.200.0.1/24" }]
peers = [{
publicKey = "<base64-workstation-public-key>"
allowedIPs = ["10.200.0.0/24"]
}]
})
]
extra_firewall_rules = [
{
direction = "in"
protocol = "udp"
port = "51820"
source_ips = ["0.0.0.0/0"]
description = "WireGuard VPN tunnel"
}
]
On your workstation (macOS WireGuard app or wg-quick):
[Interface]
PrivateKey = <base64-workstation-private-key>
Address = 10.200.0.250/24
[Peer]
PublicKey = <base64-node-public-key>
Endpoint = <control-plane-public-ip>:51820
AllowedIPs = 10.200.0.0/24, 10.0.1.0/24
PersistentKeepalive = 25
Once the tunnel is active, switch to private bootstrap:
bootstrap_endpoint_mode = "private_ip"
kubeconfig_endpoint_mode = "private_ip"
talosconfig_endpoints_mode = "private_ip"
[!NOTE]
- The WireGuard patch is applied at node boot time (part of the Talos machine config).
- For the initial deployment, bootstrap still uses public IPs (
bootstrap_endpoint_mode = "public_ip", the default).- After nodes boot with the WireGuard interface active, enable private bootstrap for subsequent operations.
VPN-only (site-to-site VPN gateway)
Use this when you already have a VPN gateway VM (10.0.1.250) on the same private network, or when you have split-horizon DNS resolving kube.vpn.example.com to the private VIP (10.0.1.100).
enable_alias_ip = true # default
cluster_api_host_private = "kube.vpn.example.com" # -> 10.0.1.100 (private VIP)
bootstrap_endpoint_mode = "private_ip"
kubeconfig_endpoint_mode = "private_ip" # uses 10.0.1.100 directly
# kubeconfig_endpoint_mode = "private_endpoint" # alternative: requires DNS
talosconfig_endpoints_mode = "private_ip"
# Optional: remove public IPv4 entirely
# disable_public_ipv4 = true
Fully Private (no public IPv4)
Provision nodes without public IPv4 addresses for maximum cost optimization and minimum attack surface. Requires the WireGuard tunnel or VPN gateway to be active before applying.
bootstrap_endpoint_mode = "private_ip"
disable_public_ipv4 = true
kubeconfig_endpoint_mode = "private_ip"
talosconfig_endpoints_mode = "private_ip"
[!WARNING] When
disable_public_ipv4 = true, nodes have no public IPs. All Terraform operations (bootstrap, health check, kubeconfig retrieval) use private IPs via the WireGuard tunnel or VPN gateway. Ensure your tunnel is active and reachable before applying.
Floating IP (public VIP)
Use this when you want a public, stable Kubernetes API endpoint without running your own load balancer.
firewall_use_current_ip = true
enable_floating_ip = true
kubeconfig_endpoint_mode = "public_ip" # uses the Floating IP for HA control planes
talosconfig_endpoints_mode = "public_ip"
External TCP load balancer + public DNS (recommended for HA)
Use this when you have a dedicated TCP (L4) load balancer pointing to all control planes on port 6443.
firewall_use_current_ip = true
cluster_api_host = "kube.example.com" # -> LB IP/DNS
kubeconfig_endpoint_mode = "public_endpoint"
talosconfig_endpoints_mode = "public_ip"
Split-horizon: public kubeconfig + private node endpoint
Use this when nodes should use a private VIP/hostname, but your kubeconfig should point to a public DNS/LB.
firewall_use_current_ip = true
enable_alias_ip = true # private VIP for nodes
cluster_api_host_private = "kube.internal.example.com" # -> 10.0.1.100 (private VIP)
cluster_api_host = "kube.example.com" # -> public Floating IP or TCP LB
kubeconfig_endpoint_mode = "public_endpoint"
talosconfig_endpoints_mode = "public_ip"
VPN Site-to-Site (Shared Private Network)
You can attach a VPN gateway VM (from another Terraform module) to the same private network as the cluster, allowing secure access from remote locations without exposing services to the public internet.
How it works:
- The VPN gateway VM gets a private IP in the cluster's node subnet (e.g.,
10.0.1.250) - The gateway does SNAT/masquerading for VPN client traffic, so cluster nodes see traffic as originating from the gateway's private IP
- No extra routes needed on cluster nodes — return traffic goes directly to the gateway on the same subnet
Pattern A — Reference the network from another module:
module "cluster" {
source = "hcloud-talos/talos/hcloud"
version = "<latest-version>"
hcloud_token = "your-hcloud-token"
firewall_use_current_ip = true
cluster_name = "vpn-cluster"
location_name = "fsn1"
control_plane_nodes = [
{ id = 1, type = "cax11" }
]
}
# In your VPN gateway module, consume the outputs:
module "vpn_gateway" {
source = "./vpn-gateway"
hcloud_network_id = module.cluster.hetzner_network_id
node_subnet_cidr = module.cluster.node_ipv4_cidr
# Give the VPN gateway a private IP in the same subnet, e.g., 10.0.1.250
}
Pattern B — Share a network between cluster and VPN modules (BYO network):
# Create the shared network once
resource "hcloud_network" "shared" {
name = "shared-net"
ip_range = "10.0.0.0/16"
}
resource "hcloud_network_subnet" "shared" {
network_id = hcloud_network.shared.id
type = "cloud"
network_zone = "eu-central"
ip_range = "10.0.1.0/24"
}
# Pass it to the cluster module
module "cluster" {
source = "hcloud-talos/talos/hcloud"
version = "<latest-version>"
hcloud_token = "your-hcloud-token"
firewall_use_current_ip = true
cluster_name = "vpn-cluster"
location_name = "fsn1"
# BYO network: module uses this instead of creating a new one
network_id = hcloud_network.shared.id
node_ipv4_cidr = "10.0.1.0/24" # must match the existing subnet
control_plane_nodes = [
{ id = 1, type = "cax11" }
]
}
# VPN gateway attached to the same network
module "vpn_gateway" {
source = "./vpn-gateway"
hcloud_network_id = hcloud_network.shared.id
node_subnet_cidr = "10.0.1.0/24"
}
Adding network routes for VPN client subnets:
If you want proper routing (instead of SNAT) between VPN clients and cluster nodes, add static routes to the Hetzner network:
module "cluster" {
# ... other settings ...
network_routes = [
{
destination = "10.8.0.0/24" # VPN client subnet
gateway = "10.0.1.250" # VPN gateway private IP
}
]
}
Mixed Worker Node Types
For more advanced use cases, you can define different types of worker nodes with individual configurations using the worker_nodes variable:
module "talos" {
source = "hcloud-talos/talos/hcloud"
version = "<latest-version>"
talos_version = "v1.12.2"
kubernetes_version = "1.35.0"
hcloud_token = "your-hcloud-token"
firewall_use_current_ip = true
cluster_name = "mixed-cluster"
location_name = "fsn1"
control_plane_nodes = [
{
id = 1
type = "cx22"
}
]
# Define different worker node types
worker_nodes = [
# Standard x86 workers
{
id = 1
type = "cx22"
labels = {
"node.kubernetes.io/instance-type" = "cx22"
}
},
# ARM workers for specific workloads with taints
{
id = 2
type = "cax21"
labels = {
"node.kubernetes.io/arch" = "arm64"
"affinity.example.com" = "example"
}
taints = [
{
key = "arm64-only"
value = "true"
effect = "NoSchedule"
}
]
}
]
}
[!NOTE] The
worker_nodesvariable allows you to:
- Mix different server types (x86 and ARM)
- Add custom labels to nodes
- Apply taints for workload isolation
- Control the number of nodes by adding/removing entries
- Keep stable node identity by setting
id(1..N)
You need to pipe the outputs of the module:
output "talosconfig" {
value = module.talos.talosconfig
sensitive = true
}
output "kubeconfig" {
value = module.talos.kubeconfig
sensitive = true
}
Then you can then run the following commands to export the kubeconfig and talosconfig:
# Save the configs to files
terraform output --raw kubeconfig > ./kubeconfig
terraform output --raw talosconfig > ./talosconfig
You can then use kubectl and talosctl to interact with your cluster.
Remember to move the generated config files to a persistent location if needed (
e.g., ~/.kube/config, ~/.talos/config).
Additional Configuration Examples
Tailscale Integration
This module supports configuring Tailscale on your cluster nodes, which provides secure networking capabilities:
tailscale = {
enabled = true
auth_key = "tskey-auth-xxxxxxxxxxxx" # Your Tailscale auth key
}
When Tailscale is enabled:
- Each node will run Tailscale as a system extension
- Nodes will automatically connect to your Tailscale network
- Cilium's loadBalancer acceleration is set to "best-effort" mode for compatibility with Tailscale
- You can access your cluster nodes directly via their Tailscale IPs
[!NOTE] You must provide a valid Tailscale auth key when enabling this feature. Auth keys can be generated in the Tailscale admin console. For more information, see the Tailscale documentation on authentication keys.
Kubelet Extra Args
kubelet_extra_args = {
system-reserved = "cpu=100m,memory=250Mi,ephemeral-storage=1Gi"
kube-reserved = "cpu=100m,memory=200Mi,ephemeral-storage=1Gi"
eviction-hard = "memory.available<100Mi,nodefs.available<10%"
eviction-soft = "memory.available<200Mi,nodefs.available<15%"
eviction-soft-grace-period = "memory.available=2m30s,nodefs.available=4m"
}
Sysctls Extra Args
sysctls_extra_args = {
# Fix for https://github.com/cloudflare/cloudflared/issues/1176
"net.core.rmem_default" = "26214400"
"net.core.wmem_default" = "26214400"
"net.core.rmem_max" = "26214400"
"net.core.wmem_max" = "26214400"
}
Activate Kernel Modules
kernel_modules_to_load = [
{
name = "binfmt_misc" # Required for QEMU
}
]
Upgrading Kubernetes
The kubernetes_version variable in this Terraform module is used for the initial deployment of your Kubernetes cluster.
It does not trigger in-place Kubernetes version upgrades on existing nodes.
To upgrade your Kubernetes cluster, you must use the talosctl upgrade-k8s command.
Important Considerations for talosctl commands:
- Talos API Endpoints:
talosctltalks to the Talos API (TCP/50000). Prefertalosconfig_endpoints_mode = "public_ip"when running from outside, or"private_ip"over VPN/private networking. Endpoint hostname modes ("public_endpoint"/"private_endpoint") are also available for explicit gateway/proxy workflows. - Avoid VIP/Load-Balanced Endpoints: Talos recommends using direct per-node IPs as endpoints in
talosconfig(not a VIP), because VIP availability depends on etcd health. - Firewall Access:
Ensure your firewall rules (configured via
firewall_use_current_iporfirewall_talos_api_source) allow access to the Talos API port (default 50000) on your control plane nodes from where you are runningtalosctl. Connectivity issues (e.g.,i/o timeout) can occur if this port is blocked.
Refer to the official Talos documentation on upgrading Kubernetes for detailed steps and best practices.
Known Limitations
- Changes in the
user_data(e.g.talos_machine_configuration) andimage(e.g. version upgrades withpacker) will not be applied to existing nodes, because it would force a recreation of the nodes.
Known Issues
- IPv6 dual stack is not supported by Talos yet. You can activate IPv6 with
enable_ipv6, but it currently has no effect on the cluster's internal networking configuration provided by this module. - Setting
enable_kube_span = truemight prevent the cluster from reaching a ready state in some configurations. Further investigation is needed. 403 Forbidden userin startup log: This is a known issue related to rate limiting or IP blocking byregistry.k8s.ioaffecting some Hetzner IP ranges. See #46 and registry.k8s.io #138.
Support
If this module saved you time or helped you run Talos on Hetzner more reliably, consider supporting ongoing maintenance:
Sponsorship is about sustainability and public appreciation, not a paid support contract or SLA. Sponsors can be acknowledged publicly via GitHub Sponsors.
Credits
- kube-hetzner For the inspiration and the great terraform module. This module is based on many ideas and code snippets from kube-hetzner.
- Talos For the incredible OS.
- Hetzner Cloud For the great cloud hosting.