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: bd:
description: description:
- Name of the bridge domain being associated with the EPG. - Name of the bridge domain being associated with the EPG.
required: yes
aliases: [ bd_name, bridge_domain ] aliases: [ bd_name, bridge_domain ]
priority: priority:
description: description:
@ -350,9 +349,13 @@ def main():
fwdCtrl=fwd_control, fwdCtrl=fwd_control,
prefGrMemb=preferred_group, prefGrMemb=preferred_group,
), ),
child_configs=[ child_configs=[dict(
dict(fvRsBd=dict(attributes=dict(tnFvBDName=bd))), fvRsBd=dict(
], attributes=dict(
tnFvBDName=bd,
),
),
)],
) )
aci.get_diff(aci_class='fvAEPg') aci.get_diff(aci_class='fvAEPg')

Loading…
Cancel
Save