Infoblox BloxOne Ansible Collection (infoblox.b1ddi_modules
) allows you to automate your DDI (DHCP, DNS and IPAM) objects hosted in the BloxOne platform. It thus enables the management of DDI objects using Ansibe automation. BloxOne ansible collection provides modules and plugins through which DDI objects can be read, created, updated and deleted. The collections also allows an organisation to integrate DDI automation into their IT automation framework.
- Ansible 2.10 and above
- Python 3.9
The infoblox.b1ddi_modules
collection has the following content:
b1_dns_view
: Module to create, update and delete DNS viewb1_dns_view_gather
: Module to get view information.b1_dns_zone
: Module to create and delete DNS zoneb1_dns_zone_gather
: Module to get zone information.b1_a_record
: Module to create and delete A record.b1_a_record_gather
: Module to gather information about existing A records.b1_cname_record
: Module to create and delete CNAME recordb1_cname_record_gather
: Module to gather information about existing CNAME records.b1_ptr_record
: Module to create and delete PTR recordb1_ptr_record_gather
: Module to gather information about existing PTR records.b1_ns_record
: Module to create and delete NS recordb1_ns_record_gather
: Module to gather information about existing ns records.
b1_ipam_ipspace
: Module to create, update and delete an IPSpace in a BloxOne platform.b1_ipam_ipspace_gather
: Module to gather information about an existing IPSpaceb1_ipam_address_block
: Module to create, update and delete an Address Block in a BloxOne platform.b1_ipam_address_block_gather
: Module to gather information about an existing Address Block.b1_ipam_subnet
: Module to create, update and delete a subnet in BloxOne platform.b1_ipam_subnet_gather
: Module to gather information about an existing subnets.b1_ipam_range
: Module to create, update and delete a range in BloxOne platform.b1_ipam_ipv4_reservation
: Module to create, update and delete a ipv4 reservation address in BloxOne platform.b1_ipam_ipv4_reservation_gather
: Module to gather information about an ipv4 reservation address.b1_ipam_fixed_address
: Module to create, update and delete a ipv4 fixed address in BloxOne platform.b1_ipam_fixed_address_gather
: Module to gather information about an ipv4 fixed address. For instance mac-address of an address.b1_ipam_host_gather
: Module to gather information about an ipam host.b1_ipam_host
: Module to create, update and delete a ipam host in BloxOne platform.b1_ipam_host_gather
: Module to gather information about option space in B1DDI.b1_ipam_host
: Module to create, update and delete a option space in BloxOne platform.
lookup plugin
: Look up plugin to query a B1DDI objects via API
The b1ddi_modules
collection can be installed from git repository through either one way.
- Install the collection directly from the GitHub repository using the latest commit on the master branch:
ansible-galaxy collection install git+https://github.com/infobloxopen/bloxone-ansible#ansible_collections/infoblox/b1ddi_modules
- Install the collection by defining in requirements.yaml
ansible-galaxy collection install -r requirement.yaml -p ./collections
The following example requirements.yaml
---
collections:
- name: [email protected]:infobloxopen/bloxone-ansible.git#ansible_collections/infoblox/b1ddi_modules
type: git
version: main
By default ansible will install the collection in ~/.ansible/collections
. Kindly create or update the ansible.cfg
to install in the custom location.
[defaults]
collections_paths = ./collections
Latest sample playbooks and examples are available at playbooks.
Create operation is supported only for required fields. Update operation is supported for selected fields.
Current Release - 1.0.1 on 02 October 2021
This code is published under GPL v3.0