aci_epg: parameter bd is not required (#47999)

pull/48125/head
Dag Wieers 6 years ago committed by GitHub
parent cb5626cc09
commit e21270988c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save