Merge pull request #4664 from jpmens/ansible

Lookup plugin for etcd

with support for configurable etcd URL in ansible.cfg (and environment)
This commit is contained in:
James Tanner 2013-11-12 15:29:05 -05:00
commit f31cb7c6e8
3 changed files with 79 additions and 0 deletions

View file

@ -152,6 +152,9 @@ PARAMIKO_PTY = get_config(p, 'paramiko_connection', 'pty', 'AN
# characters included in auto-generated passwords
DEFAULT_PASSWORD_CHARS = ascii_letters + digits + ".,:-_"
# LOOKUP PLUGIN RELATED
ANSIBLE_ETCD_URL = get_config(p, DEFAULTS, 'etcd_url', 'ANSIBLE_ETCD_URL', 'http://127.0.0.1:4001')
# non-configurable things
DEFAULT_SUDO_PASS = None
DEFAULT_REMOTE_PASS = None