Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ipam_host Support for Bloxone Ansible v2 #52

Open
wants to merge 8 commits into
base: v2
Choose a base branch
from
3 changes: 3 additions & 0 deletions changelogs/fragments/52-ipam-host.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
deprecated_features:
- b1_ipam_host - is deprecated in favor of 'ipam_host'.
- b1_ipam_host_gather - is deprecated in favor of 'ipam_host_info'.
11 changes: 11 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ action_groups:
- ipam_subnet_info
- ipam_address_block
- ipam_address_block_info
- ipam_host
- ipam_host_info

plugin_routing:
modules:
Expand Down Expand Up @@ -67,3 +69,12 @@ plugin_routing:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.dns_auth_zone_info instead.

b1_ipam_host:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.ipam_host instead.
b1_ipam_host_gather:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.ipam_host_info instead.
4 changes: 4 additions & 0 deletions plugins/modules/b1_ipam_host.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
author: "Akhilesh Kabade (@akhilesh-kabade-infoblox), Sriram Kannan(@kannans)"
short_description: Configure Host on Infoblox BloxOne DDI
version_added: "1.0.1"
deprecated:
removed_in: 3.0.0
why: This module is deprecated and will be removed in version 3.0.0. Use M(ipam_host) instead.
alternative: Use M(ipam_host) instead.
description:
- Create, Update and Delete Hosts on Infoblox BloxOne DDI. This module manages the IPAM Host object using BloxOne REST APIs.
requirements:
Expand Down
4 changes: 4 additions & 0 deletions plugins/modules/b1_ipam_host_gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
module: b1_ipam_ip_space
author: "Akhilesh Kabade (@akhilesh-kabade-infoblox)"
short_description: Gather IPAM host facts
deprecated:
removed_in: 3.0.0
why: This module is deprecated and will be removed in version 3.0.0. Use M(ipam_host_info) instead.
alternative: Use M(ipam_host_info) instead.
description:
- Gather facts about IPAM hosts in Infoblox BloxOne DDI. This module gathers facts of IPAM Hosts object using BloxOne REST APIs.
requirements:
Expand Down
Loading
Loading