diff options
Diffstat (limited to 'ops')
-rw-r--r-- | ops/glesys/main.tf | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/ops/glesys/main.tf b/ops/glesys/main.tf index 724387ba4d6b..ec6bb7c39718 100644 --- a/ops/glesys/main.tf +++ b/ops/glesys/main.tf @@ -12,14 +12,18 @@ terraform { } backend "s3" { - endpoint = "https://objects.dc-sto1.glesys.net" - bucket = "tvl-state" - key = "terraform/tvl-glesys" - region = "glesys" + endpoints = { + s3 = "https://objects.dc-sto1.glesys.net" + } + bucket = "tvl-state" + key = "terraform/tvl-glesys" + region = "glesys" skip_credentials_validation = true skip_region_validation = true skip_metadata_api_check = true + skip_requesting_account_id = true + skip_s3_checksum = true } } |