Remote password handling
diff --git a/etc/example._env b/etc/example._env
index 44414a8..1a8c472 100644
--- a/etc/example._env
+++ b/etc/example._env
@@ -8,17 +8,24 @@
# Main log file of the tests
LOGFILE = 'cfg_checker.log'
+# SSH is used when environment is not local to get salt password
+# in order set options and user for the ssh,
+# please, use ~/.ssh/config
+# SSH hostname of salt master node
+SSH_KEY=<ssh_keyfile_path>
+SSH_USER=<ssh_user>
+SSH_HOST=<ssh_hostname>
+
# Salt master host to connect to
SALT_URL=127.0.0.1
# Salt master port.
# Note that you can safely execute second master (not on production)
# on the same cfg node with diferent port and set logging to ALL
-SALT_PORT=16969
+SALT_PORT=6969
# User and password to auth on master. Can be found in /srv/salt/...
SALT_USER=salt
-SALT_PASSWORD=*****
# default timeout for salt calls
SALT_TIMEOUT=30
diff --git a/etc/local.env b/etc/local.env
new file mode 100644
index 0000000..4fab668
--- /dev/null
+++ b/etc/local.env
@@ -0,0 +1,31 @@
+# Salt Cfg Checker
+# Local Environment file
+
+# Main log file of the tests
+LOGFILE = '/var/log/salt-cfg-checker.log'
+
+# Salt master host to connect to
+SALT_URL=127.0.0.1
+
+# Salt master port.
+# Note that you can safely execute second master (not on production)
+# on the same cfg node with diferent port and set logging to ALL
+SALT_PORT=6969
+
+# User and password to auth on master. Can be found in /srv/salt/...
+# No need for a password if environment is local
+SALT_USER=salt
+
+# default timeout for salt calls
+SALT_TIMEOUT=30
+
+# Folder where salt points its filesystem: salt://
+SALT_FILE_ROOT=/usr/share/salt-formulas/env/
+
+# Subfolder with scripts to be uploaded
+SALT_SCRIPTS_FOLDER=salt-cfg-scripts
+
+# All nodes list file overide
+# Can be set to 'auto' for automatic collection
+# or check the example in 'etc/example._list'
+SALT_NODE_LIST_FILE=auto