- 3x CX23 control plane nodes (HA) - 4x CX33 worker nodes - k3s with embedded etcd - Hetzner CCM for load balancers - Gitea CI/CD workflows - Backblaze B2 for Terraform state
11 lines
286 B
HCL
11 lines
286 B
HCL
terraform {
|
|
backend "s3" {
|
|
key = "terraform.tfstate"
|
|
region = "auto"
|
|
skip_credentials_validation = true
|
|
skip_metadata_api_check = true
|
|
skip_region_validation = true
|
|
force_path_style = true
|
|
}
|
|
}
|