Skip to content

Instantly share code, notes, and snippets.

@userbradley
Created March 3, 2022 20:40
Show Gist options
  • Save userbradley/5085927aa2bcec5fa56324778faae031 to your computer and use it in GitHub Desktop.
Save userbradley/5085927aa2bcec5fa56324778faae031 to your computer and use it in GitHub Desktop.
Terraform Wasabi backend
terraform {
}
backend "s3" {
endpoint = "https://s3.uk-1.wasabisys.com"
region = "eu-west-1"
bucket = "<bucket-name>"
key = "<path/to/file>/terraform.tfstate"
skip_credentials_validation = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment