-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathcredentials.py
More file actions
36 lines (22 loc) · 760 Bytes
/
credentials.py
File metadata and controls
36 lines (22 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
"""credentials - the login credentials for all of the modules are stored here and imported into each module.
Please be sure that you are using restricted accounts (preferably with read-only access) to your servers.
"""
__author__ = 'scott@flakshack.com (Scott Vintinner)'
# VMware
VMWARE_VCENTER_USERNAME = "domain\\username"
VMWARE_VCENTER_PASSWORD = "yourpassword"
# SNMP Community String (Read-Only)
SNMP_COMMUNITY = "public"
# Tintri
TINTRI_USER = "youraccount"
TINTRI_PASSWORD = "yourpassword"
# Workdesk MySQL
WORKDESK_USER = 'youraccount'
WORKDESK_PASSWORD = 'yourpassword'
# Rubrik
RUBRIK_USER = 'youraccount'
RUBRIK_PASSWORD = 'yourpassword'
# Nutanix
NUTANIX_USER = 'youraccount'
NUTANIX_PASSWORD = 'yourpassword'