node-vsphere-soap
Version:
interface to vSphere SOAP/WSDL from node for interfacing with vCenter or ESXi
15 lines (11 loc) • 361 B
JavaScript
// place your own credentials here for a vCenter or ESXi server
// this information will be used for connecting to a vCenter instance
// for module testing
// name the file config-test.js
var vCenterTestCreds = {
'vCenterIP' : 'vcsa',
'vCenterUser' : 'vcuser',
'vCenterPassword' : 'vcpw',
'vCenter' : true
};
exports.vCenterTestCreds = vCenterTestCreds;