Skip to content

Commit

Permalink
[ignore] Fix 2.18 sanity issues
Browse files Browse the repository at this point in the history
  • Loading branch information
samiib committed Nov 19, 2024
1 parent 8708ad0 commit 04ab65f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions plugins/modules/aci_cloud_subnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
description:
- The name of the Cloud Subnet.
type: str
aliases: [subnet]
description:
description:
- Description of the Cloud Subnet.
Expand All @@ -36,7 +37,7 @@
description:
- Ip address of the Cloud Subnet.
type: str
aliases: [subnet]
aliases: [ip]
name_alias:
description:
- An alias for the name of the current object. This relates to the nameAlias field in ACI and is used to rename object without changing the DN.
Expand Down Expand Up @@ -255,7 +256,7 @@ def main():
argument_spec.update(
name=dict(type="str", aliases=["subnet"]),
description=dict(type="str"),
address=dict(type="str"),
address=dict(type="str", aliases=["ip"]),
name_alias=dict(type="str"),
vnet_gateway=dict(type="bool", default=False),
tenant=dict(type="str", required=True),
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/aci_interface_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ def main():
class_name = "infraSHPathS"
children = ["infraRsSHPathAtt"]
rn = None
child_configs = None

if node_id and interface:
if fex_id:
Expand Down

0 comments on commit 04ab65f

Please sign in to comment.