oneidentity.authentication_services.get_join_status (0.3.1) — module

Checks Active Directory join status

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

Checks Active Directory join status using the Authentication Services vastool binary.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Normal usage
  check_join_state:
    facts_key: sas_client_join_state
  register: check_join_state_result

Inputs

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

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
    domain:
      description: Active Directory domain client is joined
      returned: always
      type: str
    failed:
      description: Did the module fail?
      returned: always
      type: bool
    msg:
      description: Additional information if failed
      returned: always
      type: str
    params:
      description: Parameters passed in
      returned: always
      type: dict
    version:
      description: Version of SAS
      returned: always
      type: str
  returned: always
  type: dict