12 lines
315 B
JavaScript
12 lines
315 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
|
|
|
|
export const vCenterTestCreds = {
|
|
vCenterIP: 'vcsa',
|
|
vCenterUser: 'vcuser',
|
|
vCenterPassword: 'vcpw',
|
|
vCenter: true,
|
|
}
|