more apps

This commit is contained in:
=
2024-12-30 01:18:40 -05:00
parent c090cc9cbe
commit e76d1a1f88
6 changed files with 191 additions and 68 deletions

View File

@ -7,8 +7,19 @@ terraform {
version = "~> 4.44"
}
}
backend "local" {
# path = pathexpand("~/Backups/tfstate/cloudflare.tfstate")
backend "s3" {
endpoints = {
s3 = "https://s3.balsillie.house:9000"
}
region = "home"
bucket = "terraform"
use_path_style = true
key = "cloudflare/terraform.tfstate"
shared_credentials_files = ["~/.aws/credentials"]
profile = "terraform"
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
}
}