arubanetworks.aoscx.aoscx_vrf (4.3.2) — module

Create or Delete VRF configuration on AOS-CX

| "added in version" 2.8.0 of arubanetworks.aoscx"

Authors: Aruba Networks (@ArubaNetworks)

preview | supported by certified

Install collection

Install with ansible-galaxy collection install arubanetworks.aoscx:==4.3.2


Add to requirements.yml

  collections:
    - name: arubanetworks.aoscx
      version: 4.3.2

Description

This modules provides configuration management of VRFs on AOS-CX devices.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Create a VRF
  aoscx_vrf:
    name: red
    state: create
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Delete a VRF
  aoscx_vrf:
    name: red
    state: delete

Inputs

    
name:
    description: The name of the VRF
    required: true
    type: str

state:
    choices:
    - create
    - delete
    default: create
    description: Create or delete the VRF.
    required: false
    type: str