Project

ansibler

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
ansibler is a Ruby gem that provides utility classes for modeling, reading and writing Ansible inventory and playbook files.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 0.6.2
~> 1.0
~> 2.0
~> 2.0.1
~> 4.2.0
~> 3.2
~> 0.8.7

Runtime

 Project Readme

ansibler

ansibler is a Ruby gem for reading and writing Ansible files.

tl;dr

Given an inventory_file that contains:

host1
host2 ansible_ssh_host=172.31.3.134 ansible_ssh_user=ubuntu

[mysql]
host2

Then

inventory = Ansible::Inventory.read_file('inventory_file')
inventory.hosts.count # => 2
inventory.hosts.first.name # => "host1"
inventory.hosts.last.vars.count # => 2
inventory.hosts.last.vars['ansible_ssh_host'] # => "172.31.3.134"
inventory.groups.count # => 1
inventory.groups.first.name # => "mysql"
inventory.groups.first.hosts.first.vars['ansible_ssh_user'] # => "ubuntu"

Documentation

Full documentation is available here.

Contributing to ansibler

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
  • Fork the project.
  • Start a feature/bugfix branch.
  • Commit and push until you are happy with your contribution.
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright

Copyright (c) 2015 Alistair A. Israel. See LICENSE.txt for further details.