chore: move over files from web/git

This commit is contained in:
2025-10-08 20:40:44 -04:00
parent 2e5f7821ec
commit 5697e53bc9
15 changed files with 264 additions and 202 deletions

18
terraform/providers.tf Normal file
View File

@@ -0,0 +1,18 @@
terraform {
backend "s3" {
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
}
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.45"
}
}
}
provider "hcloud" {
token = var.hcloud_token
}