anvil/conf/components/rabbit-mq.yaml
Joshua Harlow fcbb1fe3f1 Use python keyring package and move rc files to /etc/anvil (the new master location)
1. Move the rc files to /etc/anvil as well
2. Add in usage of python keyring package
   and use it to store/fetch passwords instead
   of our own yaml password storage. This also
   allows for us to use a encrypted password
   storage (not turned on by default) if desired
   which is a nice to have.
3. Passwords are now stored in 'passwords.cfg'
   under /etc/anvil (which should be fine for
   now and can be relocated via a cli option
   if desired)
2012-08-30 21:06:41 -07:00

13 lines
184 B
YAML

# Settings for component rabbit-mq
---
# Where is rabbit located?
host: "$(auto:ip)"
# Which rabbit user should be used
user_id: guest
wanted_passwords:
rabbit: 'rabbit user'
...