16 lines
367 B
JavaScript
16 lines
367 B
JavaScript
'use strict'
|
|
|
|
// 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
|
|
|
|
const vCenterTestCreds = {
|
|
vCenterIP: 'vcsa',
|
|
vCenterUser: 'vcuser',
|
|
vCenterPassword: 'vcpw',
|
|
vCenter: true,
|
|
}
|
|
|
|
exports.vCenterTestCreds = vCenterTestCreds
|