Johannes Rothe a00abcd884
Add terraform root module and server group module
The server group module deploys a number of hetzner cloud servers which
are part of a private network.
2023-08-17 21:50:07 +02:00

21 lines
568 B
HCL

variable "location" {
description = <<-EOT
Location of the infrastructure. Needs to be aligned with network zone.
For more information visit https://docs.hetzner.com/cloud/general/locations/
EOT
type = string
}
variable "network_zone" {
description = <<-EOT
Name of the network zone. Needs to be aligned with server location.
For more information visit https://docs.hetzner.com/cloud/general/locations/
EOT
type = string
}
variable "server_count" {
description = "The number of servers to create"
type = number
}