- ---
- - name: change expire time for user ***CONTENTS REDACTED*** to (date given in epoch time)
- hosts: all
- become: true
- collections:
- - ansible.builtin.user
- tasks:
- - name: description of task
- user:
- name: ***CONTENTS REDACTED***
- expires: '{{ epoch_time_for_expiration }}'
- state: "present"
- password: "***CONTENTS REDACTED***"
- update_password: "Always"
- - debug:
- var: uptimeoutput.stdout_lines
|