Skip to content

Commit 6a542fa

Browse files
feat: Add panos_logical_router_vrf_ospf_area and panos_logical_router_vrf_ospf_area_interface #649
1 parent fefb62a commit 6a542fa

12 files changed

+752
-36
lines changed

plugins/modules/panos_logical_router.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
- paloaltonetworks.panos.fragments.transitional_provider
3838
- paloaltonetworks.panos.fragments.network_resource_module_state
3939
- paloaltonetworks.panos.fragments.gathered_filter
40-
- paloaltonetworks.panos.fragments.vsys_import
4140
- paloaltonetworks.panos.fragments.full_template_support
4241
- paloaltonetworks.panos.fragments.deprecated_commit
4342
notes:
@@ -48,7 +47,6 @@
4847
description:
4948
- Name of virtual router
5049
type: str
51-
default: 'default'
5250
"""
5351

5452
EXAMPLES = """
@@ -68,7 +66,6 @@
6866
get_connection,
6967
)
7068

71-
from panos.network import LogicalRouter
7269

7370
def main():
7471
helper = get_connection(
@@ -79,9 +76,7 @@ def main():
7976
with_classic_provider_spec=True,
8077
with_commit=True,
8178
sdk_cls=("network", "LogicalRouter"),
82-
sdk_params=dict(
83-
name=dict(required=True)
84-
),
79+
sdk_params=dict(name=dict(required=True)),
8580
)
8681

8782
module = AnsibleModule(

0 commit comments

Comments
 (0)