Skip to content

Commit ae8f02d

Browse files
Merge branch 'CiscoDevNet:master' into agr/aci_bulk_static_bindings_to_epgs
2 parents 739ad05 + d6a5c3f commit ae8f02d

7 files changed

Lines changed: 80 additions & 1 deletion

CHANGELOG.rst

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,39 @@ Cisco ACI Ansible Collection Release Notes
44

55
.. contents:: Topics
66

7+
v2.13.0
8+
=======
9+
10+
Release Summary
11+
---------------
12+
13+
Release v2.13.0 of the ``ansible-aci`` collection on 2025-12-01.
14+
This changelog describes all changes made to the modules and plugins included in this collection since v2.12.0.
15+
16+
Minor Changes
17+
-------------
18+
19+
- Add contract_type option to aci_contract_subject_to_filter and aci_contract_subject.
20+
- Add l3out, l3out_tenant, external_epg and redistribute options to aci_l4l7_device_selection_interface_context.
21+
- Add normalize_payload_values option to aci_rest for Ansible Core 2.19 support.
22+
- Add set_communities, set_as_path and set_policy_tag options to aci_tenant_action_rule_profile.
23+
24+
Bugfixes
25+
--------
26+
27+
- Fix allowed ranges of interface option in aci_interface_config module.
28+
- Fix descriptions of options in aci_maintenance_policy.
29+
- Fix querying description in aci_l4l7_service_graph_template.
30+
31+
New Modules
32+
-----------
33+
34+
- cisco.aci.aci_fabric_node_decommission - Manage the Commissioning and Decommissioning of the Fabric Node (fabric:RsDecommissionNode)
35+
- cisco.aci.aci_management_network_instance_profile - Manage external management network instance profiles (mgmt:InstP).
36+
- cisco.aci.aci_management_network_instance_profile_to_contract - Bind Consumed Contract to External Management Network Instance Profiles (mgmt:RsOoBCons)
37+
- cisco.aci.aci_switch_access_config - Manage Switch Access Policy Configuration of Leaf and Spine nodes (infra:NodeConfig).
38+
- cisco.aci.aci_switch_fabric_config - Manage Switch Fabric Policy Configuration of Leaf and Spine nodes (fabric:NodeConfig).
39+
740
v2.12.0
841
=======
942

changelogs/changelog.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,44 @@ releases:
381381
name: aci_vrf_fallback_route_group
382382
namespace: ''
383383
release_date: '2025-07-17'
384+
2.13.0:
385+
changes:
386+
bugfixes:
387+
- Fix allowed ranges of interface option in aci_interface_config module.
388+
- Fix descriptions of options in aci_maintenance_policy.
389+
- Fix querying description in aci_l4l7_service_graph_template.
390+
minor_changes:
391+
- Add contract_type option to aci_contract_subject_to_filter and aci_contract_subject.
392+
- Add l3out, l3out_tenant, external_epg and redistribute options to aci_l4l7_device_selection_interface_context.
393+
- Add normalize_payload_values option to aci_rest for Ansible Core 2.19 support.
394+
- Add set_communities, set_as_path and set_policy_tag options to aci_tenant_action_rule_profile.
395+
release_summary: 'Release v2.13.0 of the ``ansible-aci`` collection on 2025-12-01.
396+
397+
This changelog describes all changes made to the modules and plugins included
398+
in this collection since v2.12.0.
399+
400+
'
401+
modules:
402+
- description: Manage the Commissioning and Decommissioning of the Fabric Node
403+
(fabric:RsDecommissionNode)
404+
name: aci_fabric_node_decommission
405+
namespace: ''
406+
- description: Manage external management network instance profiles (mgmt:InstP).
407+
name: aci_management_network_instance_profile
408+
namespace: ''
409+
- description: Bind Consumed Contract to External Management Network Instance
410+
Profiles (mgmt:RsOoBCons)
411+
name: aci_management_network_instance_profile_to_contract
412+
namespace: ''
413+
- description: Manage Switch Access Policy Configuration of Leaf and Spine nodes
414+
(infra:NodeConfig).
415+
name: aci_switch_access_config
416+
namespace: ''
417+
- description: Manage Switch Fabric Policy Configuration of Leaf and Spine nodes
418+
(fabric:NodeConfig).
419+
name: aci_switch_fabric_config
420+
namespace: ''
421+
release_date: '2025-12-06'
384422
2.2.0:
385423
changes:
386424
bugfixes:

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
namespace: cisco
33
name: aci
44
# The version of the collection. Must be compatible with semantic versioning
5-
version: 2.12.0
5+
version: 2.13.0
66
readme: README.md
77
authors:
88
- Dag Wieers (@dagwieers) <dag@wieers.com>

meta/runtime.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ action_groups:
111111
- aci_fabric_management_access_https_cipher
112112
- aci_fabric_node
113113
- aci_fabric_node_control
114+
- aci_fabric_node_decommission
114115
- aci_fabric_pod
115116
- aci_fabric_pod_connectivity_profile
116117
- aci_fabric_pod_external_tep
@@ -220,6 +221,8 @@ action_groups:
220221
- aci_maintenance_group
221222
- aci_maintenance_group_node
222223
- aci_maintenance_policy
224+
- aci_management_network_instance_profile
225+
- aci_management_network_instance_profile_to_contract
223226
- aci_match_as_path_regex_term
224227
- aci_match_community_factor
225228
- aci_match_community_regex_term
@@ -252,6 +255,8 @@ action_groups:
252255
- aci_static_binding_to_epg
253256
- aci_static_node_mgmt_address
254257
- aci_subject_label
258+
- aci_switch_access_config
259+
- aci_switch_fabric_config
255260
- aci_switch_leaf_selector
256261
- aci_switch_policy_leaf_profile
257262
- aci_switch_policy_vpc_protection_group

plugins/modules/aci_fabric_node_decommission.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
DOCUMENTATION = r"""
1414
---
1515
module: aci_fabric_node_decommission
16+
version_added: "2.13.0"
1617
short_description: Manage the Commissioning and Decommissioning of the Fabric Node (fabric:RsDecommissionNode)
1718
description:
1819
- Manage the Commissioning and Decommissioning of the Fabric Node on Cisco ACI fabrics.

plugins/modules/aci_management_network_instance_profile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
DOCUMENTATION = r"""
1414
---
1515
module: aci_management_network_instance_profile
16+
version_added: "2.13.0"
1617
short_description: Manage external management network instance profiles (mgmt:InstP).
1718
description:
1819
- Manage external management network instance profiles on Cisco ACI fabrics.

plugins/modules/aci_management_network_instance_profile_to_contract.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
DOCUMENTATION = r"""
1414
---
1515
module: aci_management_network_instance_profile_to_contract
16+
version_added: "2.13.0"
1617
short_description: Bind Consumed Contract to External Management Network Instance Profiles (mgmt:RsOoBCons)
1718
description:
1819
- Bind Consumed Contract to External Management Network Instance Profiles on Cisco ACI fabrics.

0 commit comments

Comments
 (0)