about summary refs log tree commit diff
path: root/ops
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2024-09-01T12·13+0300
committerclbot <clbot@tvl.fyi>2024-09-01T13·18+0000
commit5119cae360aa51cb66f253fd9d6c7b8bcc1fa63d (patch)
treea4c2ff1313bcdbe79c34c1f462763a3210152537 /ops
parent23f97d0df00dc22b255caf12760e1d0aaa147f3f (diff)
fix(ops/buildkite): fix terraform state config r/8631
The same fix from cl/11021 also needs to be applied to other states.

Change-Id: I205b03aab49130639c79702f4bf16f0bf28d89ab
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12410
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'ops')
-rw-r--r--ops/buildkite/tvl.tf6
1 files changed, 5 insertions, 1 deletions
diff --git a/ops/buildkite/tvl.tf b/ops/buildkite/tvl.tf
index 4c45909a0c36..ee032a5143cb 100644
--- a/ops/buildkite/tvl.tf
+++ b/ops/buildkite/tvl.tf
@@ -8,7 +8,9 @@ terraform {
   }
 
   backend "s3" {
-    endpoint = "https://objects.dc-sto1.glesys.net"
+    endpoints = {
+      s3 = "https://objects.dc-sto1.glesys.net"
+    }
     bucket   = "tvl-state"
     key      = "terraform/tvl-buildkite"
     region   = "glesys"
@@ -16,6 +18,8 @@ terraform {
     skip_credentials_validation = true
     skip_region_validation      = true
     skip_metadata_api_check     = true
+    skip_requesting_account_id  = true
+    skip_s3_checksum            = true
   }
 }