feat: runner terraform

This commit is contained in:
2025-10-01 23:06:29 -04:00
parent 909fd105e7
commit 5f2b51ef09
3 changed files with 122 additions and 72 deletions

View File

@@ -5,6 +5,10 @@ locals {
domain = "maximhutz.com"
subdomain = "git"
network_cidr = "10.0.0.0/16"
gitea_ip = "10.0.0.16"
runner_ip = "10.0.0.17"
}
# ---------------------------------------------------------------------------- #
@@ -15,8 +19,13 @@ variable "hcloud_token" {
type = string
}
variable "public_ssh_key_path" {
description = "The location of the public key used to access the repository server."
variable "public_gitea_ssh_key_path" {
description = "The location of the public key used to access the repository Gitea server."
type = string
}
variable "public_runner_ssh_key_path" {
description = "The location of the public key used to access the repository Gitea Action runner."
type = string
}