config.vm.dist.php 799 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * DO vm_min_size_id/vm_max_size_id sizes
  4. *
  5. * ID Name
  6. * 66 512MB
  7. * 63 1GB
  8. * 62 2GB
  9. * 64 4GB
  10. * 65 8GB
  11. * 61 16GB
  12. * 60 32GB
  13. * 70 48GB
  14. * 70 48GB
  15. * 69 64GB
  16. * 68 96GB
  17. */
  18. return array(
  19. 'enabled' => true,
  20. 'vms' => array(
  21. array(
  22. 'enabled' => true,
  23. 'name' => 'DigitalOcean',
  24. 'vm_client_id' => 'client_id',
  25. 'api_key' => '123456',
  26. 'vm_id' => '123456', // The VM ID we want to access
  27. 'vm_min_size_id' => '66', // VM size ID example for 512mb use 66
  28. 'vm_max_size_id' => '65' // For 1GB use 63
  29. ),
  30. // The Amazon hook is not implemented yet
  31. array(
  32. 'enabled' => false,
  33. 'name' => 'Amazon'
  34. )
  35. )
  36. );