mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-31 01:24:35 +02:00
Co-authored-by: sdepassio <114986849+sdepassio@users.noreply.github.com> Co-authored-by: Evan-Adam <152897682+Evan-Adam@users.noreply.github.com> REFS: CTOR-786
29 lines
777 B
Raku
29 lines
777 B
Raku
%centreon_vmware_config = (
|
|
vsphere_server => {
|
|
'default' => {
|
|
'url' => 'https://vcenter/sdk',
|
|
'username' => 'XXXXXX',
|
|
'password' => 'XXXXXX'
|
|
},
|
|
'additional' => {
|
|
'url' => 'https://vcenter2/sdk',
|
|
'username' => 'XXXXXX',
|
|
'password' => 'XXXXXX'
|
|
}
|
|
},
|
|
credstore_use => 0,
|
|
credstore_file => '/root/.vmware/credstore/vicredentials.xml',
|
|
timeout_vsphere => 60,
|
|
timeout => 60,
|
|
timeout_kill => 30,
|
|
dynamic_timeout_kill => 86400,
|
|
refresh_keeper_session => 15,
|
|
bind => '*',
|
|
port => 5700,
|
|
ipc_file => '/tmp/centreon_vmware/routing.ipc',
|
|
case_insensitive => 0,
|
|
vsan_sdk_path => '/usr/local/share/perl5/VMware'
|
|
);
|
|
|
|
1;
|