Files
hetzner-cluster/terraform/variables.tf

42 lines
733 B
HCL

locals {
net-cidr = "10.0.0.0/8"
subnet-cidr = "10.0.2.0/24"
nat-private-ip = "10.0.2.8"
servers = {
control = "10.0.2.11"
node-a = "10.0.2.9"
node-b = "10.0.2.10"
}
domain = "maximhutz.com"
}
variable "public_key_file" {
type = string
sensitive = true
}
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
}