Skip to content

Commit

Permalink
[bugfix] Remove duplicate alias name for attribute epg in aci_epg_sub…
Browse files Browse the repository at this point in the history
…net module
  • Loading branch information
lhercot committed Jul 13, 2024
1 parent 0e22c2f commit 9e45b43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/modules/aci_epg_subnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
description:
- Name of the end point group.
type: str
aliases: [ epg_name, name ]
aliases: [ epg_name ]
description:
description:
- The description for the Subnet.
Expand Down Expand Up @@ -345,7 +345,7 @@ def main():
argument_spec.update(aci_annotation_spec())
argument_spec.update(
tenant=dict(type="str", aliases=["tenant_name"]), # Not required for querying all objects
epg=dict(type="str", aliases=["epg_name", "name"]), # Not required for querying all objects
epg=dict(type="str", aliases=["epg_name"]), # Not required for querying all objects
ap=dict(type="str", aliases=["app_profile", "app_profile_name"]), # Not required for querying all objects
description=dict(type="str", aliases=["descr"]),
enable_vip=dict(type="bool"),
Expand Down

0 comments on commit 9e45b43

Please sign in to comment.