You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

variables.tf 474B

4 jaren geleden
4 jaren geleden
4 jaren geleden
123456789101112131415161718192021222324252627282930
  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. }