oneidentity.authentication_services.vastool_status (0.3.1) — module

Check the health status of Authentication Services agents

| "added in version" 2.9 of oneidentity.authentication_services"

Authors: Laszlo Nagy (laszlo.nagy@oneidentity.com)

preview | supported by community

Install collection

Install with ansible-galaxy collection install oneidentity.authentication_services:==0.3.1


Add to requirements.yml

  collections:
    - name: oneidentity.authentication_services
      version: 0.3.1

Description

Check the health status of Authentication Services agents. Tests the machine's join against Active Directory and local configuration for various issues using the Authentication Services vastool binary.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Simple agent status check
  vastool_status:
    facts: true
    facts_verbose: true
    facts_key: vastool_status_facts_key
  register: vastool_status_result

Inputs

    
facts:
    default: true
    description:
    - Generate Ansible facts?
    required: false
    type: bool

facts_key:
    default: vastool_status_facts_key
    description:
    - Ansible facts key
    required: false
    type: str

facts_verbose:
    default: true
    description:
    - Verbose Ansible facts?
    required: false
    type: bool

Outputs

ansible_facts:
  description: All non-standard return values are placed in Ansible facts
  keys:
    changed:
      description: Did the state of the host change?
      returned: always
      type: bool
    failed:
      description: Did the module fail?
      returned: always
      type: bool
    issues:
      description: Issues found
      returned: when facts_verbose true
      type: list of dicts
    msg:
      description: Additional information if failed
      returned: always
      type: str
    params:
      description: Parameters passed in
      returned: always
      type: dict
    version:
      description: Version of vastool
      returned: always
      type: str
  returned: when facts parameter is true
  type: dict