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

View File

@@ -1,14 +1,25 @@
variable "aws_region" {
type = string
description = "The AWS region things are created in."
locals {
datacenter = "fsn1-dc14"
server_type = "cx22"
server_image = "debian-12"
domain = "maximhutz.com"
subdomain = "git"
network_cidr = "10.0.0.0/16"
subnet_cidr = "10.0.0.0/24"
proxy_ip = "10.0.0.1"
}
variable "aws_access" {
type = string
description = "The access key to generate the Gitea instance."
# ---------------------------------------------------------------------------- #
variable "hcloud_token" {
sensitive = true
description = "The hCloud token used to access Hetzner resources."
type = string
}
variable "aws_secret" {
type = string
description = "The access secret to generate the Gitea instance."
}
variable "public_ssh_key_path" {
description = "The location of the public key used to access the repository Gitea server."
type = string
}