25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
474B

  1. variable "vms" {
  2. default = {
  3. "host1.example.com" = {
  4. #provider = "hetzner"
  5. groups = [ "testgroup" ]
  6. volumes = {
  7. data = { size = 32 }
  8. }
  9. }
  10. "host2.example.com" = {
  11. #provider = "hetzner"
  12. groups = [ "testgroup" ]
  13. volumes = {
  14. data = { size = 32 }
  15. }
  16. }
  17. }
  18. }
  19. variable "groups" {
  20. default = {
  21. #testgroup = {
  22. # testvar1 = "bla"
  23. #}
  24. }
  25. }
  26. variable "providers_hostvars" {
  27. default = {}
  28. }