```terraform { backend "s3" { bucket = "bucket" key = "terraform.tfstate"

terraform {
    backend "s3" {
        bucket = "bucket"
        key = "terraform.tfstate"
        endpoint = "https://xxx.r2.cloudflarestorage.com"
        skip_credentials_validation = true
        skip_region_validation = true
        region = "us-east-1"
        access_key = "xxx"
        secret_key = "xxx"
    }
}
Was this page helpful?