Skip to content

Instantly share code, notes, and snippets.

@noahkrohn
Created March 30, 2024 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noahkrohn/06eddf7ef61fa56b716202c5449f95c3 to your computer and use it in GitHub Desktop.
Save noahkrohn/06eddf7ef61fa56b716202c5449f95c3 to your computer and use it in GitHub Desktop.
Working Ceph s3 backend for Terraform 1.7.x
terraform {
backend "s3" {
bucket = ""
key = ""
region = ""
endpoints = {
s3 = ""
}
use_path_style = true
skip_region_validation = true
skip_credentials_validation = true
skip_metadata_api_check = true
skip_requesting_account_id = true
skip_s3_checksum = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment