Files
hetzner-cluster/terraform/variables.tf

25 lines
397 B
HCL

locals {
net-cidr = "10.0.0.0/8"
subnet-cidr = "10.0.2.0/24"
nat-private-ip = "10.0.2.8"
lb-private-ip = "10.0.2.128"
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
}