purestorage.fusion.fusion_info module – Collect information from Pure Fusion

Note

This module is part of the purestorage.fusion collection (version 1.2.0).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install purestorage.fusion. You need further requirements to be able to use this module, see Requirements for details.

To use it in a playbook, specify: purestorage.fusion.fusion_info.

New in purestorage.fusion 1.0.0

Synopsis

  • Collect information from a Pure Fusion environment.

  • By default, the module will collect basic information including counts for arrays, availabiliy_zones, volunmes, snapshots . Fleet capacity and data reduction rates are also provided.

  • Additional information can be collected based on the configured set of arguements.

Requirements

The below requirements are needed on the host that executes this module.

  • python >= 3.5

  • purefusion

Parameters

Parameter

Comments

app_id

string

Application ID from Pure1 Registration page

eg. pure1:apikey:dssf2331sd

Defaults to the set environment variable under FUSION_APP_ID

gather_subset

list / elements=string

When supplied, this argument will define the information to be collected. Possible values for this include all, minimum, roles, users, placements, arrays, hardware_types, volumes, host, storage_classes, protection_policies, placement_groups, interfaces, zones, nigs, storage_endpoints, snapshots, storage_services, tenants, tenant_spaces, network_interface_groups and api_clients.

Default: ["minimum"]

key_file

string

Path to the private key file

Defaults to the set environment variable under FUSION_PRIVATE_KEY_FILE.

Notes

Note

  • Supports check mode.

  • This module requires the purefusion Python library

  • You must set FUSION_APP_ID and FUSION_PRIVATE_KEY_FILE environment variables if app_id and key_file arguments are not passed to the module directly

Examples

- name: Collect default set of information
  purestorage.fusion.fusion_info:
    app_id: key_name
    key_file: "az-admin-private-key.pem"
    register: fusion_info

- name: Show default information
  ansible.builtin.debug:
    msg: "{{ fusion_info['fusion_info']['default'] }}"

- name: Collect all information
  purestorage.fusion.fusion_info:
    gather_subset:
      - all
    app_id: key_name
    key_file: "az-admin-private-key.pem"

- name: Show all information
  ansible.builtin.debug:
    msg: "{{ fusion_info['fusion_info'] }}"

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key

Description

fusion_info

complex

Returns the information collected from Fusion

Returned: always

Authors

  • Pure Storage ansible Team (@sdodsley)