variable "vms" { default = { #"hostname.example.com" = { # provider = "hetzner" # groups = [ "testgroup" ] # volumes = { # data = { size = 32 } # } #} } } variable "token" { type = string description = "Hetzner Cloud API-Token" } variable "default_location" { type = string default = "nbg1" } variable "server_image" { type = string default = "debian-10" } variable "ssh_keys_filenames" { type = set(string) default = [ "~/.ssh/id_ed25519.pub", ] }