feat: add docs website

This commit is contained in:
Patrick Schratz 2025-01-02 23:40:10 +01:00
commit 576125d377
Signed by: pat-s
GPG key ID: 3C6318841EF78925

16
backend.tf Normal file
View file

@ -0,0 +1,16 @@
terraform {
backend "s3" {
bucket = "devxy-tf-state-build-binaries"
key = "terraform.tfstate"
region = "fsn1"
access_key = var.HETZNER_S3_ACCESS_KEY_K3S
secret_key = var.HETZNER_S3_SECRET_KEY_K3S
endpoint = "https://fsn1.your-objectstorage.com"
skip_credentials_validation = true
skip_metadata_api_check = true
skip_region_validation = true
skip_s3_checksum = true
encrypt = true
sse_customer_key = "q6DUYGPpNSFFynGK1k6q6ZMeHRVLYTuPN1H3blilfB4="
}
}