paloaltonetworks.panos.panos_redistribution (2.19.1) — module

Manage a Redistribution Profile on a virtual router

| "added in version" 1.0.0 of paloaltonetworks.panos"

Authors: Joshua Colson (@freakinhippie), Garfield Lee Freeman (@shinmog)

Install collection

Install with ansible-galaxy collection install paloaltonetworks.panos:==2.19.1


Add to requirements.yml

  collections:
    - name: paloaltonetworks.panos
      version: 2.19.1

Description

Manage a Redistribution Profile on a virtual router


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Create Redistribution Profile
  paloaltonetworks.panos.panos_redistribution:
    provider: '{{ provider }}'
    name: 'my-profile'
    priority: 42

Inputs

    
name:
    description:
    - Name of rule.
    type: str

port:
    default: 443
    description:
    - B(Deprecated)
    - Use I(provider) to specify PAN-OS connectivity instead.
    - HORIZONTALLINE
    - The port number to connect to the PAN-OS device on.
    type: int

type:
    choices:
    - ipv4
    - ipv6
    default: ipv4
    description:
    - Name of rule.
    type: str

state:
    choices:
    - present
    - absent
    - replaced
    - merged
    - deleted
    - gathered
    default: present
    description:
    - The state.
    type: str

action:
    choices:
    - no-redist
    - redist
    default: no-redist
    description:
    - Rule action.
    type: str

commit:
    description:
    - B(Deprecated)
    - Please use M(paloaltonetworks.panos.panos_commit_firewall), M(paloaltonetworks.panos.panos_commit_panorama),
      M(paloaltonetworks.panos.panos_commit_push) instead.
    - HORIZONTALLINE
    - Commit changes after creating object.  If I(ip_address) is a Panorama device, and
      I(device_group) or I(template) are also set, perform a commit to Panorama and a
      commit-all to the device group/template.
    type: bool

api_key:
    description:
    - B(Deprecated)
    - Use I(provider) to specify PAN-OS connectivity instead.
    - HORIZONTALLINE
    - The API key to use instead of generating it using I(username) / I(password).
    type: str

vr_name:
    default: default
    description:
    - Name of the virtual router; it must already exist; see M(paloaltonetworks.panos.panos_virtual_router).
    type: str

password:
    description:
    - B(Deprecated)
    - Use I(provider) to specify PAN-OS connectivity instead.
    - HORIZONTALLINE
    - The password to use for authentication.  This is ignored if I(api_key) is specified.
    type: str

priority:
    description:
    - Priority ID.
    type: int

provider:
    description:
    - A dict object containing connection details.
    suboptions:
      api_key:
        description:
        - The API key to use instead of generating it using I(username) / I(password).
        type: str
      ip_address:
        description:
        - The IP address or hostname of the PAN-OS device being configured.
        type: str
      password:
        description:
        - The password to use for authentication.  This is ignored if I(api_key) is specified.
        type: str
      port:
        default: 443
        description:
        - The port number to connect to the PAN-OS device on.
        type: int
      serial_number:
        description:
        - The serial number of a firewall to use for targeted commands. If I(ip_address)
          is not a Panorama PAN-OS device, then this param is ignored.
        type: str
      username:
        default: admin
        description:
        - The username to use for authentication.  This is ignored if I(api_key) is specified.
        type: str
    type: dict
    version_added: 1.0.0
    version_added_collection: paloaltonetworks.panos

template:
    description:
    - (Panorama only) The template this operation should target. Mutually exclusive with
      I(template_stack).
    type: str

username:
    default: admin
    description:
    - B(Deprecated)
    - Use I(provider) to specify PAN-OS connectivity instead.
    - HORIZONTALLINE
    - The username to use for authentication.  This is ignored if I(api_key) is specified.
    type: str

ip_address:
    description:
    - B(Deprecated)
    - Use I(provider) to specify PAN-OS connectivity instead.
    - HORIZONTALLINE
    - The IP address or hostname of the PAN-OS device being configured.
    type: str

filter_type:
    description:
    - Any of 'static', 'connect', 'rip', 'ospf', or 'bgp'.
    elements: str
    type: list

filter_nexthop:
    description:
    - Filter nexthop.
    elements: str
    type: list

template_stack:
    description:
    - (Panorama only) The template stack this operation should target. Mutually exclusive
      with I(template).
    type: str

gathered_filter:
    description:
    - When I(state=gathered).
    - An advanced filtering option to filter results returned from PAN-OS.
    - Refer to the guide discussing I(gathered_filter) for more information.
    type: str

ospf_filter_tag:
    description:
    - OSPF filter on tag.
    elements: str
    type: list

filter_interface:
    description:
    - Filter interface.
    elements: str
    type: list

ospf_filter_area:
    description:
    - OSPF filter on area.
    elements: str
    type: list

filter_destination:
    description:
    - Filter destination.
    elements: str
    type: list

bgp_filter_community:
    description:
    - BGP filter on community.
    elements: str
    type: list

ospf_filter_pathtype:
    description:
    - Any of 'intra-area', 'inter-area', 'ext-1', or 'ext-2'.
    elements: str
    type: list

bgp_filter_extended_community:
    description:
    - BGP filter on extended community.
    elements: str
    type: list