Skip to content

Commit 57cfd85

Browse files
committed
Fix lint
1 parent 9271754 commit 57cfd85

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

roles/beats/tasks/beats-security.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
- name: Install packages for security tasks
4-
package:
4+
ansible.builtin.package:
55
name:
66
- unzip
77
- python3-cryptography

roles/elasticsearch/tasks/elasticsearch-security.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
- name: Install packages for security tasks
4-
package:
4+
ansible.builtin.package:
55
name:
66
- unzip
77
- python3-cryptography

roles/kibana/tasks/kibana-security.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
- name: Install packages for security tasks
4-
package:
4+
ansible.builtin.package:
55
name:
66
- unzip
77
- python3-cryptography

roles/logstash/tasks/logstash-security.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
- name: Install packages for security tasks
4-
package:
4+
ansible.builtin.package:
55
name:
66
- unzip
77
- python3-cryptography
@@ -386,7 +386,7 @@
386386

387387
- name: Create logstash password hash salt
388388
ansible.builtin.copy:
389-
content: "{{ lookup('password', '/dev/null', chars=['ascii_lowercase', 'digits'], length=logstash_password_hash_salt_length, seed=logstash_password_hash_salt_seed)}}"
389+
content: "{{ lookup('password', '/dev/null', chars=['ascii_lowercase', 'digits'], length=logstash_password_hash_salt_length, seed=logstash_password_hash_salt_seed) }}"
390390
dest: /root/logstash_password_hash_salt
391391
owner: root
392392
group: root

0 commit comments

Comments
 (0)