arubanetworks.aoscx.aoscx_banner (4.3.2) — module

Create or Delete Banner 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 Banner on AOS-CX devices.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Adding or Updating Banner
  aoscx_banner:
    banner_type: banner
    banner: "Aruba Rocks!"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Delete Banner
  aoscx_banner:
    banner_type: banner
    state: delete
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Delete Exec Banner
  aoscx_banner:
    banner_type: banner_exec
    state: delete

Inputs

    
state:
    choices:
    - create
    - delete
    default: create
    description: Create or Delete Banner on the switch.
    required: false
    type: str

banner:
    description: String to be configured as the banner.
    type: str

banner_type:
    choices:
    - banner
    - banner_exec
    description: Type of banner being configured on the switch.
    required: true
    type: str