feat: new load balancer, with dns via route 53

This commit is contained in:
2025-12-31 12:10:52 -05:00
parent b8938983dc
commit a916da7d45
6 changed files with 105 additions and 29 deletions

View File

@@ -8,6 +8,8 @@ locals {
node-a = "10.0.2.9"
node-b = "10.0.2.10"
}
domain = "maximhutz.com"
}
variable "public_key_file" {
@@ -19,3 +21,21 @@ variable "hcloud_token" {
type = string
sensitive = true
}
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
}