summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/setup_test_user/tasks/default.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/setup_test_user/tasks/default.yml')
-rw-r--r--test/integration/targets/setup_test_user/tasks/default.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/integration/targets/setup_test_user/tasks/default.yml b/test/integration/targets/setup_test_user/tasks/default.yml
new file mode 100644
index 0000000..83ee8f1
--- /dev/null
+++ b/test/integration/targets/setup_test_user/tasks/default.yml
@@ -0,0 +1,14 @@
+- name: set variables
+ set_fact:
+ test_user_name: ansibletest0
+ test_user_group: null
+
+- name: set plaintext password
+ no_log: yes
+ set_fact:
+ test_user_plaintext_password: "{{ lookup('password', '/dev/null') }}"
+
+- name: set hashed password
+ no_log: yes
+ set_fact:
+ test_user_hashed_password: "{{ test_user_plaintext_password | password_hash('sha512') }}"