config.template.js 734 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // @flow
  2. export default {
  3. nodeServer: 'http://localhost:3000/',
  4. username: 'admin',
  5. password: '',
  6. endpoints: {
  7. azure: {
  8. username: '',
  9. password: '',
  10. subscriptionId: '',
  11. },
  12. vmware: {
  13. username: '',
  14. password: '',
  15. host: '',
  16. },
  17. openstack: {
  18. userDomainName: 'Default',
  19. authUrl: '',
  20. projectName: 'admin',
  21. projectDomainName: '',
  22. password: '',
  23. username: 'admin',
  24. glanceApiVersion: 2,
  25. identityVersion: 3,
  26. },
  27. },
  28. wizard: {
  29. azure: {
  30. location: { label: 'West US', value: 'westus' },
  31. resourceGroup: { label: 'Coriolis', value: 'coriolis' },
  32. },
  33. instancesSearch: 'ubuntu',
  34. instancesSelectItem: 2,
  35. },
  36. }