Skip to content

Latest commit

 

History

History
538 lines (286 loc) · 10.6 KB

vrf_module.rst

File metadata and controls

538 lines (286 loc) · 10.6 KB
orphan:

codeaffen.phpipam.vrf module -- Manage virtual routers and forwarders

Note

This module is part of the codeaffen.phpipam collection (version 1.7.0).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install codeaffen.phpipam.

To use it in a playbook, specify: codeaffen.phpipam.vrf.

.. versionadded:: 0.4.0 of codeaffen.phpipam

  • create, update and delete L2 routing vrfs

The below requirements are needed on the host that executes this module.

  • inflection
  • ipaddress
  • phpypam>=1.0.0
.. rst-class:: ansible-option-table

Parameter Comments
.. rst-class:: ansible-option-title

app_id

.. rst-class:: ansible-option-type-line

string

API app name

.. rst-class:: ansible-option-line

Default: "ansible"

.. rst-class:: ansible-option-title

description

.. rst-class:: ansible-option-type-line

string

A descriptive text for that entity

.. rst-class:: ansible-option-title

distinguisher

.. rst-class:: ansible-option-type-line

string

VRF route distinguisher

.. rst-class:: ansible-option-title

name

.. rst-class:: ansible-option-type-line

string / required

Name of the given vrf

.. rst-class:: ansible-option-title

password

.. rst-class:: ansible-option-type-line

string / required

Password of the user to access phpIPAM server

.. rst-class:: ansible-option-title

sections

.. rst-class:: ansible-option-type-line

list / elements=string

List of sections where the nameserver appears

.. rst-class:: ansible-option-title

server_url

.. rst-class:: ansible-option-type-line

string / required

URL of the phpIPAM server

.. rst-class:: ansible-option-title

state

.. rst-class:: ansible-option-type-line

string

State of the entity

.. rst-class:: ansible-option-line

Choices:

  • present ← (default)
  • absent
.. rst-class:: ansible-option-title

username

.. rst-class:: ansible-option-type-line

string / required

Username to access phpIPAM server

.. rst-class:: ansible-option-title

validate_certs

.. rst-class:: ansible-option-type-line

boolean

Is the TLS certificate of the phpIPAM server verified or not.

.. rst-class:: ansible-option-line

Choices:

  • no
  • yes ← (default)
- name: "Create vrf"
  codeaffen.phpipam.vrf:
    username: "admin"
    password: "s3cr3t"
    server_url: "https://ipam.example.com"
    name: "my vrf"
    sections:
      - Example Inc.
      - DEVOPS department
    state: present

- name: "Remove vrf"
  codeaffen.phpipam.vrf:
    username: "admin"
    password: "s3cr3t"
    server_url: "https://ipam.example.com"
    name: "my vrf"
    state: absent

Authors

  • Christian Meißner (@cmeissner)

Collection links

Issue Tracker Homepage Repository (Sources)