Files
HetznerTerra/terraform/backend.tf
MichaelFisher1997 cd16545ad3
Some checks failed
Deploy Cluster / Terraform (push) Failing after 9s
Deploy Cluster / Ansible (push) Has been skipped
fix: Add skip_requesting_account_id and use endpoints.s3 for Backblaze B2
2026-02-28 20:58:40 +00:00

12 lines
325 B
HCL

terraform {
backend "s3" {
key = "terraform.tfstate"
region = "auto"
skip_credentials_validation = true
skip_metadata_api_check = true
skip_region_validation = true
skip_requesting_account_id = true
force_path_style = true
}
}