sachaboudjema.arubaos.arubaos_facts (0.1.2) — module

Populates ansible_facts with details about the system to which the query is being sent

| "added in version" 2.9.6 of sachaboudjema.arubaos"

Authors: Sacha Boudjema (@sachaboudjema)

preview | supported by community

Install collection

Install with ansible-galaxy collection install sachaboudjema.arubaos:==0.1.2


Add to requirements.yml

  collections:
    - name: sachaboudjema.arubaos
      version: 0.1.2

Description

Populates ansible_facts with C(sys_info) details about the system to which the query is being sent.

For a full list of retrieved facts, see API documentation.

Inputs

    
host:
    description:
    - Hostname or IP Address of the controller.
    - If not set the environment variable C(ANSIBLE_ARUBAOS_HOST) will be used.
    required: true
    type: str

password:
    description:
    - Password used to login to the controller.
    - If not set the environment variable C(ANSIBLE_ARUBAOS_PASSWORD) will be used.
    no_log: true
    required: true
    type: str

username:
    description:
    - Username used to login to the controller.
    - If not set the environment variable C(ANSIBLE_ARUBAOS_USERNAME) will be used.
    required: true
    type: str

client_key:
    default: None
    description:
    - If the client_cert did not have the key, use this parameter. Default option is None.
    required: false
    type: str

client_cert:
    default: None
    description:
    - Set the file path for client certificate validation from server side. Default option
      is None.
    required: false
    type: str

validate_certs:
    default: None
    description:
    - Set to True to validate server SSL certificate upon HTTPS connection. Default option
      is false.
    required: false
    type: str

Outputs

ansible_facts:
  contains:
    arubaos:
      description: Details about the system to which the query is being sent.
      type: dict
  description: Facts to be merged to the current play context.
  type: dict

See also