community.network.bigmon_chain (5.0.2) — module

Create and remove a bigmon inline service chain.

Authors: Ted (@tedelhourani)

Install collection

Install with ansible-galaxy collection install community.network:==5.0.2


Add to requirements.yml

  collections:
    - name: community.network
      version: 5.0.2

Description

Create and remove a bigmon inline service chain.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Bigmon inline service chain
  community.network.bigmon_chain:
    name: MyChain
    controller: '{{ inventory_hostname }}'
    state: present
    validate_certs: false

Inputs

    
name:
    description:
    - The name of the chain.
    required: true

state:
    choices:
    - present
    - absent
    default: present
    description:
    - Whether the service chain should be present or absent.

controller:
    description:
    - The controller IP address.
    required: true

access_token:
    description:
    - Bigmon access token. If this isn't set, the environment variable C(BIGSWITCH_ACCESS_TOKEN)
      is used.

validate_certs:
    default: true
    description:
    - If C(false), SSL certificates will not be validated. This should only be used on
      personally controlled devices using self-signed certificates.
    required: false
    type: bool