ansible.builtin.boundary_meter (v2.4.6.0-1) — module

Manage boundary meters

| "added in version" 1.3 of ansible.builtin"

Authors: curtis (@ccollicutt)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.4.6.0.post1

Description

This module manages boundary meters


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Create meter
  boundary_meter:
    apiid: AAAAAA
    apikey: BBBBBB
    state: present
    name: '{{ inventory_hostname }}'
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Delete meter
  boundary_meter:
    apiid: AAAAAA
    apikey: BBBBBB
    state: absent
    name: '{{ inventory_hostname }}'

Inputs

    
name:
    description:
    - meter name
    required: true

apiid:
    description:
    - Organizations boundary API ID
    required: true

state:
    choices:
    - present
    - absent
    default: true
    description:
    - Whether to create or remove the client from boundary
    required: false

apikey:
    description:
    - Organizations boundary API KEY
    required: true

validate_certs:
    choices:
    - 'yes'
    - 'no'
    default: 'yes'
    description:
    - If C(no), SSL certificates will not be validated. This should only be used on personally
      controlled sites using self-signed certificates.
    required: false
    version_added: 1.5.1
    version_added_collection: ansible.builtin