1
0
Fork 0
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:
Dag Wieers 2018-11-05 19:34:15 +01:00 committed by GitHub
parent cb5626cc09
commit e21270988c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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')