feat: new load balancer, with dns via route 53
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user