From 869051abd7965a111b037862300d30f10fa4edd9 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Thu, 16 Feb 2023 12:58:55 +0000 Subject: [PATCH] vrf(rd): add example and documentation parameter --- plugins/modules/aoscx_vrf.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/plugins/modules/aoscx_vrf.py b/plugins/modules/aoscx_vrf.py index 25951cf..3d697c3 100644 --- a/plugins/modules/aoscx_vrf.py +++ b/plugins/modules/aoscx_vrf.py @@ -28,6 +28,10 @@ description: The name of the VRF required: true type: str + rd: + description: The Route Distinguisher (RD) of the VRF (use XXXXX:YYYYY for the format) + required: false + type: str state: description: Create or delete the VRF. required: false @@ -44,6 +48,12 @@ name: red state: create +- name: Create a VRF with RD + aoscx_vrf: + name: red + rd: 100:1 + state: create + - name: Delete a VRF aoscx_vrf: name: red