From b86c7759c59aa89134d360d6e86a5f0134347c9d Mon Sep 17 00:00:00 2001 From: Derrick Johnson <36274454+DerrickTJ@users.noreply.github.com> Date: Fri, 21 Jun 2019 11:04:38 -0500 Subject: [PATCH] Update Documentation mso_schema_template_bd.py (#58020) * Update mso_schema_template_bd.py --- .../modules/network/aci/mso_schema_template_bd.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/aci/mso_schema_template_bd.py b/lib/ansible/modules/network/aci/mso_schema_template_bd.py index 345f9df2872..5ad0f19945d 100644 --- a/lib/ansible/modules/network/aci/mso_schema_template_bd.py +++ b/lib/ansible/modules/network/aci/mso_schema_template_bd.py @@ -42,8 +42,14 @@ options: type: str vrf: description: - - The VRF associated to this BD. + - The VRF associated to this BD. This is required only when creating a new BD. type: dict + suboptions: + name: + description: + - The name of the VRF to associate with. + required: true + type: str subnets: description: - The subnets associated to this BD. @@ -111,6 +117,8 @@ EXAMPLES = r''' schema: Schema 1 template: Template 1 bd: BD 1 + vrf: + name: VRF1 state: present delegate_to: localhost