Skip to content

Commit

Permalink
Examples and document updates
Browse files Browse the repository at this point in the history
  • Loading branch information
nitish-ks authored and JkhatriInfobox committed Oct 3, 2024
1 parent 64d7aa4 commit f3fd572
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 6 deletions.
31 changes: 31 additions & 0 deletions plugins/modules/nios_host_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,37 @@
password: admin
connection: local
- name: Create an ipv4 host record with DNS EA inheritance enabled
infoblox.nios_modules.nios_host_record:
name: host.ansible.com
configure_for_dns: true
use_dns_ea_inheritance: true
ipv4:
- address: 192.168.10.1
dhcp: true
mac: 00-80-C8-E3-4C-BD
state: present
provider:
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: Create an ipv4 host record with host address EA inheritance enabled
infoblox.nios_modules.nios_host_record:
name: host.ansible.com
configure_for_dns: true
ipv4:
- address: 192.168.10.1
dhcp: true
mac: 00-80-C8-E3-4C-BD
use_for_ea_inheritance: true
state: present
provider:
host: "{{ inventory_hostname_short }}"
username: admin
password: admin
connection: local
- name: Create an ipv4 host record over DHCP with PXE server
infoblox.nios_modules.nios_host_record:
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/nios_nsgroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
DOCUMENTATION = '''
---
module: nios_nsgroup
short_description: Configure InfoBlox DNS Nameserver Authoritative Groups
short_description: Configure Infoblox DNS Nameserver Authoritative Groups
version_added: "1.0.0"
extends_documentation_fragment: infoblox.nios_modules.nios
author:
Expand Down
3 changes: 2 additions & 1 deletion plugins/modules/nios_nsgroup_delegation.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
DOCUMENTATION = '''
---
module: nios_nsgroup_delegation
short_description: Configure InfoBlox DNS Nameserver Delegation Groups
short_description: Configure Infoblox DNS Nameserver Delegation Groups
extends_documentation_fragment: infoblox.nios_modules.nios
author:
- Mauricio Teixeira (@badnetmask)
version_added: "1.7.0"
description:
- Adds and/or removes nameserver groups of type "Delegation" form Infoblox NIOS servers.
This module manages NIOS C(nsgroup:delegation) objects using the Infoblox. WAPI interface over REST.
Expand Down
3 changes: 2 additions & 1 deletion plugins/modules/nios_nsgroup_forwardingmember.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
DOCUMENTATION = '''
---
module: nios_nsgroup_forwardingmember
short_description: Configure InfoBlox DNS Nameserver Forward/Stub Server Groups
short_description: Configure Infoblox DNS Nameserver Forwarding Member Groups
extends_documentation_fragment: infoblox.nios_modules.nios
author:
- Mauricio Teixeira (@badnetmask)
version_added: "1.7.0"
description:
- Adds and/or removes nameserver groups of type "Forwarding Member" from Infoblox NIOS servers.
This module manages NIOS C(nsgroup:forwardstubserver) objects using the Infoblox. WAPI interface over REST.
Expand Down
3 changes: 2 additions & 1 deletion plugins/modules/nios_nsgroup_forwardstubserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
DOCUMENTATION = '''
---
module: nios_nsgroup_forwardstubserver
short_description: Configure InfoBlox DNS Nameserver Forwarding Member Groups
short_description: Configure Infoblox DNS Nameserver Forward/Stub Server Groups
extends_documentation_fragment: infoblox.nios_modules.nios
author:
- Mauricio Teixeira (@badnetmask)
version_added: "1.7.0"
description:
- Adds and/or removes nameserver groups of type "Forward/Stub Server" form Infoblox NIOS servers.
This module manages NIOS C(nsgroup:forwardstubserver) objects using the Infoblox. WAPI interface over REST.
Expand Down
3 changes: 2 additions & 1 deletion plugins/modules/nios_nsgroup_stubmember.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
DOCUMENTATION = '''
---
module: nios_nsgroup_stubmember
short_description: Configure InfoBlox DNS Nameserver Stub Member Groups
short_description: Configure Infoblox DNS Nameserver Stub Member Groups
extends_documentation_fragment: infoblox.nios_modules.nios
author:
- Mauricio Teixeira (@badnetmask)
version_added: "1.7.0"
description:
- Adds and/or removes nameserver groups of type "Stub Member" form Infoblox NIOS servers.
This module manages NIOS C(nsgroup:stubmember) objects using the Infoblox. WAPI interface over REST.
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/nios_range.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
module: nios_range
author: "Matthew Dennett (@matthewdennett)"
short_description: Configure Infoblox NIOS network range object
version_added: "1.4.0"
version_added: "1.5.0"
description:
- Adds and/or removes instances of range objects from
Infoblox NIOS servers. This module manages NIOS DHCP range objects
Expand Down

0 comments on commit f3fd572

Please sign in to comment.