community.general.bigmon_chain (0.1.1) — module

Create and remove a bigmon inline service chain.

Authors: Ted (@tedelhourani)

preview | supported by community

Install collection

Install with ansible-galaxy collection install community.general:==0.1.1


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.1.1

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
  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