Files
N8N/terraform/backend.tf
2026-05-20 22:26:32 +00:00

19 lines
553 B
HCL

terraform {
backend "s3" {
bucket = "terraform"
key = "template/terraform.tfstate"
access_key = "GK242d456c0692a9d4cc102206"
secret_key = "1d7e22b7a8892cb11b569017659aa511b37b53287c4d1699c310d9f8ac76df09"
region = "garage"
endpoints = {
s3 = "http://192.168.10.109:3900"
}
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
}
}