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 Address Support for Bloxone Ansible v2 #55

Open
wants to merge 10 commits into
base: v2
Choose a base branch
from
3 changes: 3 additions & 0 deletions changelogs/fragments/55-ipam-address.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
deprecated_features:
- b1_ipam_ipv4_reservation - is deprecated in favor of 'ipam_address'.
- b1_ipam_ipv4_reservation_gather - is deprecated in favor of 'ipam_address_info'.
11 changes: 11 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ action_groups:
- ipam_subnet_info
- ipam_address_block
- ipam_address_block_info
- ipam_address
- ipam_address_info

infra:
- infra_join_token
Expand Down Expand Up @@ -72,3 +74,12 @@ plugin_routing:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.dns_auth_zone_info instead.

b1_ipam_ipv4_reservation:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.ipam_address instead.
b1_ipam_ipv4_reservation_gather:
deprecation:
removal_version: 3.0.0
warning_text: Use infoblox.bloxone.ipam_address_info instead.
4 changes: 4 additions & 0 deletions plugins/modules/b1_ipam_ipv4_reservation.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
author: "Amit Mishra (@amishra), Sriram Kannan(@kannans)"
short_description: Configure IPv4 address reservation 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_address) instead.
alternative: Use M(ipam_address) instead.
description:
- Get, Create, Update and Delete IPv4 address reservation on Infoblox BloxOne DDI. This module manages the IPAM IPv4 address reservation object using BloxOne REST APIs.
requirements:
Expand Down
4 changes: 4 additions & 0 deletions plugins/modules/b1_ipam_ipv4_reservation_gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
author: "Amit Mishra (@amishra), Sriram Kannan(@kannans)"
short_description: Gather information about Address Block in B1DDI
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_address_info) instead.
alternative: Use M(ipam_address_info) instead.
description:
- Gather information about Address Block object on Infoblox BloxOne DDI. This module gather information about address block object using BloxOne REST APIs.
requirements:
Expand Down
Loading