Files
N8N/terraform/backend.tf

19 lines
559 B
Terraform
Raw Normal View History

2026-05-20 22:26:32 +00:00
terraform {
backend "s3" {
2026-06-23 22:27:17 +01:00
bucket = "terraform"
key = "n8n/terraform.tfstate"
access_key = "GK242d456c0692a9d4cc102206"
2026-05-20 22:26:32 +00:00
secret_key = "1d7e22b7a8892cb11b569017659aa511b37b53287c4d1699c310d9f8ac76df09"
region = "garage"
endpoints = {
2026-06-23 22:27:17 +01:00
s3 = "http://192.168.10.109:3900"
}
2026-05-20 22:26:32 +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-23 22:27:17 +01:00
}
2026-05-20 22:26:32 +00:00
}