Deprecated

Removed in 2.0.0

i

Reason:All VELOS related modules have been moved to a dedicated collection for managing F5OS based devices. | Alternative:Use M(f5networks.f5os.velos_partition_change_password) instead.

f5networks.f5_bigip.velos_partition_change_password (1.13.0) — module

Provides access to VELOS chassis partition user authentication methods

| "added in version" 1.3.0 of f5networks.f5_bigip"

Authors: Wojciech Wypior (@wojtek0806)

Install collection

Install with ansible-galaxy collection install f5networks.f5_bigip:==1.13.0


Add to requirements.yml

  collections:
    - name: f5networks.f5_bigip
      version: 1.13.0

Description

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

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- 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!@

Inputs

    
user_name:
    description:
    - Name of the chassis partition user account.
    required: true
    type: str

new_password:
    description:
    - New password for the specified user account.
    required: true
    type: str

old_password:
    description:
    - Current password for the specified user account.
    required: true
    type: str