Skip to content

Commit

Permalink
vrf(rd): add example and documentation parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
alagoutte committed Feb 16, 2023
1 parent e53d2b1 commit 6ddc4f9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions plugins/modules/aoscx_vrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 6ddc4f9

Please sign in to comment.