test: use password to generate random string instead of range (#84129)

* Use password lookup instead of range
Co-authored-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/84136/head
Colin Watson 1 month ago committed by GitHub
parent 42e2f09b97
commit c6e166319a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -84,7 +84,7 @@
- name: ARCHIVE | Generate an archive prefix
set_fact:
git_archive_prefix: '{{ range(2 ** 31, 2 ** 32) | random }}' # Generate some random archive prefix
git_archive_prefix: "{{ lookup('ansible.builtin.password', '/dev/null', length=10, chars=['digits']) }}" # Generate some random archive prefix
- name: ARCHIVE | Archive repo using various archival format and with an archive prefix
git:

Loading…
Cancel
Save