diff options
author | Vincent Ambo <mail@tazj.in> | 2021-12-24T17·56+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-24T18·55+0000 |
commit | 8ca69b1caa763ffe3b2f573c9e0aa25c9d10668c (patch) | |
tree | e57a7588636c7819e3a1f1c4f1ed926316ae4684 /ops/glesys/main.tf | |
parent | 677f72cb9d362c098d6bc29959ddb37ab124301f (diff) |
style(ops/glesys): apply terraform fmt r/3367
Change-Id: Ibbba78aaecc3b3cba23961a1b10ce5a8eb8ff296 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4580 Tested-by: BuildkiteCI Autosubmit: tazjin <mail@tazj.in> Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'ops/glesys/main.tf')
-rw-r--r-- | ops/glesys/main.tf | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ops/glesys/main.tf b/ops/glesys/main.tf index 63753662b87b..9fa87f0609a0 100644 --- a/ops/glesys/main.tf +++ b/ops/glesys/main.tf @@ -13,13 +13,13 @@ terraform { backend "s3" { endpoint = "https://objects.dc-sto1.glesys.net" - bucket = "tvl-state" - key = "terraform/tvl-glesys" - region = "glesys" + bucket = "tvl-state" + key = "terraform/tvl-glesys" + region = "glesys" skip_credentials_validation = true - skip_region_validation = true - skip_metadata_api_check = true + skip_region_validation = true + skip_metadata_api_check = true } } @@ -29,24 +29,24 @@ provider "glesys" { resource "glesys_objectstorage_instance" "tvl-backups" { description = "tvl-backups" - datacenter = "dc-sto1" + datacenter = "dc-sto1" } resource "glesys_objectstorage_instance" "tvl-state" { description = "tvl-state" - datacenter = "dc-sto1" + datacenter = "dc-sto1" lifecycle { - ignore_changes = [ accesskey ] + ignore_changes = [accesskey] } } resource "glesys_objectstorage_credential" "terraform-state" { - instanceid = glesys_objectstorage_instance.tvl-state.id + instanceid = glesys_objectstorage_instance.tvl-state.id description = "key for terraform state" } resource "glesys_objectstorage_credential" "litestream" { - instanceid = glesys_objectstorage_instance.tvl-state.id + instanceid = glesys_objectstorage_instance.tvl-state.id description = "key for litestream" } |