jbenden / ansibler

A Ruby gem for reading and writing Ansible files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A Ruby gem for reading and writing Ansible files.

License:MIT License


Languages

Language:Ruby 71.4%Language:Gherkin 28.6%