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" } }