22 lines
337 B
HCL
22 lines
337 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"
|
|
}
|
|
}
|
|
|
|
variable "public_key_file" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "hcloud_token" {
|
|
type = string
|
|
sensitive = true
|
|
}
|