AnsiblePilot — Master Ansible Automation

AnsiblePilot is the leading resource for learning Ansible automation, DevOps, and infrastructure as code. Browse over 1,400 tutorials covering Ansible modules, playbooks, roles, collections, and real-world examples. Whether you are a beginner or an experienced engineer, our step-by-step guides help you automate Linux, Windows, cloud, containers, and network infrastructure.

Popular Topics

About Luca Berton

Luca Berton is an Ansible automation expert, author of 8 Ansible books published by Apress and Leanpub including "Ansible for VMware by Examples" and "Ansible for Kubernetes by Example", and creator of the Ansible Pilot YouTube channel. He shares practical automation knowledge through tutorials, books, and video courses to help IT professionals and DevOps engineers master infrastructure automation.

Ansible Change User Password: Secure Password Management Guide — Video Tutorial

How to change user passwords with Ansible. Use password_hash, vault encryption, and user module to manage passwords securely on Linux and Windows.

Watch on YouTube · Read the written article

Ansible Change User Password: Secure Password Management Guide — Video Tutorial

How to change user passwords with Ansible. Use password_hash, vault encryption, and user module to manage passwords securely on Linux and Windows.

Watch Video

Watch "Ansible Change User Password: Secure Password Management Guide" on YouTube

What You'll Learn

Full Tutorial Content

How to Change a User Password with Ansible Welcome to another episode of Ansible Pilot! I'm Luca Berton, and in today's session, we'll explore how to change a user password using Ansible. The Ansible module we'll be focusing on is `ansible.builtin.user`, a stable and well-established module that comes bundled with Ansible. It's designed to manage user accounts on various Linux distributions, SunOS, macOS, and FreeBSD. Understanding the Ansible `user` Module The `ansible.builtin.user` module falls under the "builtin" collection of Ansible modules, indicating its integral nature within the Ansible framework. This module has been around for years and proves reliable in handling user accounts across a wide range of operating systems. For Windows environments, the equivalent module is `ansible.windows.win_user`. Key Parameters The `user` module offers a plethora of parameters to cater to various user management tasks. Here are some key parameters: - `name` (string): Specifies the username. - `state` (string): Indicates whether the user should be present or absent. - `password` (string): For Linux, the password must be encrypted; for macOS, it can be in cleartext. The only mandatory parameter is "name" since it denotes the username. The "state" parameter is crucial and should be set to "present" when changing the password, as it ensures the account exists. The most significant parameter is "password," allowing you to set the new password. For macOS, the password is in cleartext, while for Linux, it must be encrypted. The `password_hash` filter can be used to generate an encrypted password. Optionally, you can specify the encryption algorithm and salt to enhance password security. Live Demo: Changing a User Password in Linux Let's dive into a practical Ansible playbook to Playbooknstrate changing a user account password in a Linux environment. Ansible Playbook Code - `change_password.yml` ```yaml --- - name: user module Playbook hosts: all become: true vars: myuser: "example" mypassword: "password" tasks: - name: change password ansible.builtin.user: name: "{{ myuser }}" state: present password: "{{ mypassword | password_hash('sha512') }}" ``` Playbook Execution Output ```bash $ ansible-playbook -i Playbook/inventory change\ user\ password/user.yaml PLAY [user module Playbook] *************************************************************************** TASK [Gathering Facts] **************************************************************************** ok: [demo.example.com] TASK [change password] **************************************************************************** changed: [demo.example.com] PLAY RECAP **************************************************************************************** demo.example.com : ok=2 changed=1 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 ``` Verification ```bash $ sshpass -p 'password' example@demo.example.com ``

About This Tutorial

Read the full written article: Ansible Change User Password: Secure Password Management Guide

Topics Covered

Related Video Tutorials