mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
aci_epg: parameter bd is not required (#47999)
This commit is contained in:
parent
cb5626cc09
commit
e21270988c
1 changed files with 7 additions and 4 deletions
|
@ -42,7 +42,6 @@ options:
|
|||
bd:
|
||||
description:
|
||||
- Name of the bridge domain being associated with the EPG.
|
||||
required: yes
|
||||
aliases: [ bd_name, bridge_domain ]
|
||||
priority:
|
||||
description:
|
||||
|
@ -350,9 +349,13 @@ def main():
|
|||
fwdCtrl=fwd_control,
|
||||
prefGrMemb=preferred_group,
|
||||
),
|
||||
child_configs=[
|
||||
dict(fvRsBd=dict(attributes=dict(tnFvBDName=bd))),
|
||||
],
|
||||
child_configs=[dict(
|
||||
fvRsBd=dict(
|
||||
attributes=dict(
|
||||
tnFvBDName=bd,
|
||||
),
|
||||
),
|
||||
)],
|
||||
)
|
||||
|
||||
aci.get_diff(aci_class='fvAEPg')
|
||||
|
|
Loading…
Reference in a new issue