feat: nginx proxy manager

This commit is contained in:
2025-10-12 17:32:07 -04:00
parent 8ca2011d77
commit 2401368316
13 changed files with 309 additions and 67 deletions

View File

@@ -4,7 +4,6 @@ locals {
server_image = "debian-12"
domain = "maximhutz.com"
subdomain = "git"
network_cidr = "10.10.0.0/16"
subnet_cidr = "10.10.0.0/24"
@@ -23,3 +22,21 @@ variable "public_ssh_key_path" {
description = "The location of the public key used to access the repository Gitea server."
type = string
}
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
}