Skip to content

Commit

Permalink
Update documentation with changed var name
Browse files Browse the repository at this point in the history
  • Loading branch information
allenrobel committed Aug 23, 2022
1 parent 05429a7 commit 1a6b807
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions roles/ndfc_policy_vrf_rt_import_evpn_loop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fabric_name | str() | The fabric in which ``device_name`` resides (see devi
vrf_name | str() | The vrf into which ``import_vrf_name``'s route-targets will be imports
import_vrf_name | str() | The vrf whose route-targets will be imported into ``vrf_name``
state | str() | The Ansible state to apply for the import. e.g. ``deleted`` to delete the import, ``merged`` to merge the import. NOTE: ``replaced`` is not a valid state for this module.
devices | list() | An Ansible list of ``device_name`` to which ``vrf_name`` is attached
device_list | list() | An Ansible list of ``device_name`` to which ``vrf_name`` is attached

Fabric, device, and vrf names are are defined in the following file:

Expand All @@ -34,10 +34,9 @@ The example below performs a bi-directional import of route-targets between vrfs
gather_facts: false
vars:
state: merged
fabric_name: f1
vrf_name: v1
import_vrf_name: v2
devices:
device_list:
- leaf_1
- leaf_2
- leaf_3
Expand All @@ -60,10 +59,9 @@ The example below performs a bi-directional import of route-targets between vrfs
gather_facts: false
vars:
state: merged
fabric_name: f1
vrf_name: v2
import_vrf_name: v1
devices:
device_list:
- leaf_1
- leaf_2
- leaf_3
Expand Down

0 comments on commit 1a6b807

Please sign in to comment.