Skip to content

Commit

Permalink
replace random password with password lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
widhalmt committed Dec 3, 2024
1 parent 64ff588 commit d49c4fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion molecule/elasticstack_default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
elasticstack_full_stack: true
elasticstack_no_log: false
logstash_pipeline_unsafe_shutdown: true
logstash_redis_password: "{{ lookup('community.general.random_string', length=12, min_lower=1, min_upper=1, min_numeric=1, min_special=1, override_special='-_=!') }}"
logstash_redis_password: "{{ lookup('ansible.builtin.password', '/var/lib/redispassword', chars=['ascii_letters'], length=15 }}'
redis_requirepass: "{{ logstash_redis_password }}"

Check failure on line 22 in molecule/elasticstack_default/converge.yml

View workflow job for this annotation

GitHub Actions / lint

22:25 syntax error: expected <block end>, but found '{' (syntax)

Check failure on line 22 in molecule/elasticstack_default/converge.yml

View workflow job for this annotation

GitHub Actions / lint_full / lint

22:25 syntax error: expected <block end>, but found '{' (syntax)
beats_filebeat_syslog_udp: true
beats_filebeat_syslog_tcp: true
Expand Down

0 comments on commit d49c4fa

Please sign in to comment.