diff options
| author | Rohit Thakur <rohitthakur2590@outlook.com> | 2020-04-24 13:52:56 +0530 | 
|---|---|---|
| committer | Rohit Thakur <rohitthakur2590@outlook.com> | 2020-04-24 13:52:56 +0530 | 
| commit | 6726b46caabe79f27485e5b33f7f1e324ded6dd1 (patch) | |
| tree | fea270e4ee7dab9d21bd0c3c094004767ab7d880 /plugins/modules/vyos_ospfv3.py | |
| parent | 2f68e4bfd9b908e6dc36ce7ce04bfdc29dfb6264 (diff) | |
| download | vyos.vyos-6726b46caabe79f27485e5b33f7f1e324ded6dd1.tar.gz vyos.vyos-6726b46caabe79f27485e5b33f7f1e324ded6dd1.zip | |
ospfv3 work going on
Signed-off-by: Rohit Thakur <rohitthakur2590@outlook.com>
Diffstat (limited to 'plugins/modules/vyos_ospfv3.py')
| -rw-r--r-- | plugins/modules/vyos_ospfv3.py | 21 | 
1 files changed, 12 insertions, 9 deletions
| diff --git a/plugins/modules/vyos_ospfv3.py b/plugins/modules/vyos_ospfv3.py index 5b4b8467..e620fe10 100644 --- a/plugins/modules/vyos_ospfv3.py +++ b/plugins/modules/vyos_ospfv3.py @@ -39,22 +39,21 @@ DOCUMENTATION = """  ---  module: vyos_ospfv3  version_added: 2.10 -short_description: Manages attributes of OSPF IPv6 routes on VyOS network devices. -description: This module manages attributes of OSPF IPv6 routes on VyOS network devices. +short_description: OSPFv3 resource module. +description: This resource module configures and manages attributes of OSPFv3 routes on VyOS network devices.  author: Rohit Thakur (@rohitthakur2590)  options:    config: -    description: A provided OSPF route configuration. -    type: list -    elements: dict +    description: A provided OSPFv3 route configuration. +    type: dict      suboptions: -      ospf_area: -        description: OSPF area. +      areas: +        description: OSPFv3 area.          type: list          elements: dict          suboptions: -          area: -            description: Area name/identity. +          area_id: +            description: OSPFv3 Area name/identity.              type: str            export_list:              description: Name of export-list. @@ -95,6 +94,10 @@ options:            route_map:              description: Route map references.              type: str  +  running_config: +    description: +      - The configuration to be parsed. +    type: str    state:      description:        - The state the configuration should be left in. | 
