wojtek0806.f5os.velos_partition_change_password (0.3.0) — module

Provides access to VELOS chassis partition user authentication methods

| "added in version" 1.0.0 of wojtek0806.f5os"

Authors: Wojciech Wypior (@wojtek0806)

Install collection

Install with ansible-galaxy collection install wojtek0806.f5os:==0.3.0


Add to requirements.yml

  collections:
    - name: wojtek0806.f5os
      version: 0.3.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.f5os
  connection: httpapi

  vars:
    ansible_host: "lb.mydomain.com"
    ansible_user: "admin"
    ansible_httpapi_password: "secret"
    ansible_network_os: f5networks.f5os.f5os
    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