velos_partition_change_password – Provides access to VELOS chassis partition user authentication methods

New in version 1.3.0.

DEPRECATED

Removed in F5 BIGIP Collection version:
 2.0.0
Why:All VELOS related modules have been moved to a dedicated collection for managing F5OS based devices.
Alternative:Use f5networks.f5os.velos_partition_change_password instead.

Synopsis

  • Provides access to VELOS chassis partition user authentication change password methods.

Parameters

Parameter Choices/Defaults Configuration Comments
new_password
string / required
New password for the specified user account.
old_password
string / required
Current password for the specified user account.
user_name
string / required
Name of the chassis partition user account.

Notes

Note

  • This module is not idempotent.

Examples

- hosts: all
  collections:
    - f5networks.f5_bigip
  connection: httpapi

  vars:
    ansible_host: "lb.mydomain.com"
    ansible_user: "admin"
    ansible_httpapi_password: "secret"
    ansible_network_os: f5networks.f5_bigip.velos
    ansible_httpapi_use_ssl: yes

  tasks:
    - name: Change password on partition
      velos_partition_change_password:
        user_name: foo
        old_password: admin
        new_password: abc123!@

Status

  • This module will be removed in version 2.0.0. [deprecated]
  • For more information see DEPRECATED.

Authors

  • Wojciech Wypior (@wojtek0806)