From 821bf69aeb8d9394c13bb8d0edecd78127f6e0bd Mon Sep 17 00:00:00 2001 From: Hubert Bugaj Date: Fri, 3 Nov 2023 10:50:15 +0100 Subject: [PATCH] fix daily snapshot endpoint --- terraform/daily_snapshot/prod/main.tf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/terraform/daily_snapshot/prod/main.tf b/terraform/daily_snapshot/prod/main.tf index a90c58788..7bfc3361b 100644 --- a/terraform/daily_snapshot/prod/main.tf +++ b/terraform/daily_snapshot/prod/main.tf @@ -14,12 +14,15 @@ terraform { region = "us-west-1" # The S3 region is determined by the endpoint. fra1 = Frankfurt. # This region does not have to be shared by the droplet. - endpoint = "https://fra1.digitaloceanspaces.com" + endpoints = { + s3 = "https://fra1.digitaloceanspaces.com" + } # Credentially can be validated through the Security Token Service (STS). # Unfortunately, DigitalOcean does not support STS so we have to skip the # validation. skip_credentials_validation = "true" + skip_requesting_account_id = "true" skip_s3_checksum = "true" } }