16 lines
361 B
HCL
16 lines
361 B
HCL
variable "hcloud_token" {
|
|
sensitive = true
|
|
description = "The hCloud token used to access Hetzner resources."
|
|
type = string
|
|
}
|
|
|
|
variable "public_ssh_key_path" {
|
|
description = "The location of the public key used to access the repository server."
|
|
type = string
|
|
}
|
|
|
|
locals {
|
|
datacenter = "fsn1-dc14"
|
|
server_type = "cx22"
|
|
server_image = "debian-12"
|
|
} |