forked from flakshack/SysAdminBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcredentials.py
More file actions
33 lines (19 loc) · 708 Bytes
/
credentials.py
File metadata and controls
33 lines (19 loc) · 708 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
#!/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)'
# EMC VNX Reporter
VNX_REPORTER_USERNAME = "someuser"
VNX_REPORTER_PASSWORD = "somepassword"
# VMware
VMWARE_VCENTER_USERNAME = "somedomain\\someuser"
VMWARE_VCENTER_PASSWORD = "somepassword"
# SNMP Community String (Read-Only)
SNMP_COMMUNITY = "public"
# Tintri
TINTRI_USER = "someuser"
TINTRI_PASSWORD = "somepassword"
# Workdesk MySQL
WORKDESK_USER = 'someuser'
WORKDESK_PASSWORD = 'somepassword'