Files
audiobookshelf/terraform/backend.tf

19 lines
570 B
Terraform
Raw Normal View History

2026-06-17 13:52:04 +00:00
terraform {
backend "s3" {
2026-06-19 08:47:47 +01:00
bucket = "terraform"
2026-06-23 23:04:59 +01:00
key = "audiobookshelf/terraform.tfstate"
2026-06-19 08:47:47 +01:00
access_key = "GK242d456c0692a9d4cc102206"
2026-06-17 13:52:04 +00:00
secret_key = "1d7e22b7a8892cb11b569017659aa511b37b53287c4d1699c310d9f8ac76df09"
region = "garage"
endpoints = {
2026-06-19 08:47:47 +01:00
s3 = "http://192.168.10.109:3900"
}
2026-06-17 13:52:04 +00:00
skip_credentials_validation = true
skip_requesting_account_id = true
skip_metadata_api_check = true
skip_region_validation = true
use_path_style = true
use_lockfile = true
2026-06-19 08:47:47 +01:00
}
2026-06-17 13:52:04 +00:00
}