ansible/plugins
2013-10-29 13:47:25 -05:00
..
callbacks add a way for callback to disable itself 2013-08-14 22:32:28 +02:00
connections pasto and core connection plugins reference fix 2013-02-16 13:40:04 +01:00
inventory Eliminate the RAX_REGION environment variable; iterate through all regions available to an account and present servers in region groups; default to using server name to identify servers in groups; set ansible_ssh_host key for each server; utilize the _meta key to provide all the hostvars for each server; all grouping by web, db, sql, lb, app based on server name; pretty print JSON output for some human-readable inventory action 2013-10-29 13:47:25 -05:00
README.md Update README 2012-10-08 08:04:21 -04:00

ansible-plugins

You can extend ansible with optional callback and connection plugins.

callbacks

Callbacks can be used to add logging or monitoring capability, or just make interesting sound effects.

Drop callback plugins in your ansible/lib/callback_plugins/ directory.

connections

Connection plugins allow ansible to talk over different protocols.

Drop connection plugins in your ansible/lib/runner/connection_plugins/ directory.

inventory

Inventory plugins allow you to store your hosts, groups, and variables in any way you like. Examples include discovering inventory from EC2 or pulling it from Cobbler. These could also be used to interface with LDAP or database.

chmod +x an inventory plugin and either name it /etc/ansible/hosts or use ansible with -i to designate the path to the plugin.

contributions welcome

Send in pull requests to add plugins of your own. The sky is the limit!