feat: gitea works!

This commit is contained in:
2025-09-09 00:36:31 -04:00
parent 65893c30f3
commit f193ff4e6b
12 changed files with 209 additions and 51 deletions

View File

@@ -1,3 +1,14 @@
locals {
datacenter = "fsn1-dc14"
server_type = "cx22"
server_image = "debian-12"
domain = "maximhutz.com"
subdomain = "git2"
}
# ---------------------------------------------------------------------------- #
variable "hcloud_token" {
sensitive = true
description = "The hCloud token used to access Hetzner resources."
@@ -9,8 +20,20 @@ variable "public_ssh_key_path" {
type = string
}
locals {
datacenter = "fsn1-dc14"
server_type = "cx22"
server_image = "debian-12"
variable "aws_region" {
description = "The region of the AWS account."
type = string
sensitive = true
}
variable "aws_access_key" {
description = "The access key of the account."
type = string
sensitive = true
}
variable "aws_secret_key" {
description = "The secret key of the account."
type = string
sensitive = true
}