Skip to content

Commit

Permalink
Replace generic password with random one in Molecule (#352)
Browse files Browse the repository at this point in the history
I know, this password is only used in Molecule. But maybe this can be
that start to replace all the generic passwords we have with more
secure, random ones.

After all, @pdolinic suggested that in the past already.
  • Loading branch information
widhalmt authored Nov 6, 2024
1 parent 3c7a91b commit 8002a4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion molecule/elasticsearch_test_modules/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
netways.elasticstack.elasticsearch_user:
name: new-user1
fullname: New User
password: changeMe123!
password: "{{ lookup('community.general.random_string', length=12, min_lower=1, min_upper=1, min_numeric=1, min_special=1, override_special='-_=!') }}"
email: [email protected]
roles:
- new-role1
Expand Down

0 comments on commit 8002a4f

Please sign in to comment.