From 6c693d527e41529354067d5c098408f1d5e4ae6e Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 5 Jul 2023 20:34:14 +0200 Subject: [PATCH] fix dead link --- .../posts/2022/store-terraform-state-on-backblaze-s3/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/2022/store-terraform-state-on-backblaze-s3/index.md b/content/posts/2022/store-terraform-state-on-backblaze-s3/index.md index 6c2056a..ecae21a 100644 --- a/content/posts/2022/store-terraform-state-on-backblaze-s3/index.md +++ b/content/posts/2022/store-terraform-state-on-backblaze-s3/index.md @@ -18,7 +18,7 @@ resources: Terraform is an open source infrastructure-as-code tool for creating, modifying, and extending infrastructure in a secure and predictable way. Terraform needs to store a state about the managed infrastructure and configuration. This state is used by Terraform to map real-world resources to your configuration and track metadata. By default, this state is stored in a local file, but it can also be stored remotely. -Terraform supports multiple remote backend provider including S3. I already use Backblaze for backups and have had good experiences with it. Since Backblaze also provides an S3 Compatible API, I wanted to use it for Terraform. How to use S3 as a state backend is well [documented](https://www.terraform.io/language/settings/backends/s3), but as it's focused on Amazon S3 there are a few things to take care of. A basic working configuration will look like this: +Terraform supports multiple remote backend provider including S3. I already use Backblaze for backups and have had good experiences with it. Since Backblaze also provides an S3 Compatible API, I wanted to use it for Terraform. How to use S3 as a state backend is well [documented](https://developer.hashicorp.com/terraform/language/settings/backends/s3), but as it's focused on Amazon S3 there are a few things to take care of. A basic working configuration will look like this: ```Terraform terraform {