Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

34 řádky
542B

  1. variable "vms" {
  2. default = {
  3. #"hostname.example.com" = {
  4. # provider = "hetzner"
  5. # groups = [ "testgroup" ]
  6. # volumes = {
  7. # data = { size = 32 }
  8. # }
  9. #}
  10. }
  11. }
  12. variable "token" {
  13. type = string
  14. description = "Hetzner Cloud API-Token"
  15. }
  16. variable "default_location" {
  17. type = string
  18. default = "nbg1"
  19. }
  20. variable "server_image" {
  21. type = string
  22. default = "debian-10"
  23. }
  24. variable "ssh_keys_filenames" {
  25. type = set(string)
  26. default = [
  27. "~/.ssh/id_ed25519.pub",
  28. ]
  29. }