You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2022. It is now read-only.
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ This role provides a generic means of installing Elastic supported Beats
32
32
Create your Ansible playbook with your own tasks, and include the role beats. You will have to have this repository accessible within the context of playbook.
33
33
34
34
```sh
35
-
ansible-galaxy install elastic.beats,v7.13.3
35
+
ansible-galaxy install elastic.beats,v7.13.4
36
36
```
37
37
38
38
Then create your playbook yaml adding the role beats.
@@ -45,7 +45,7 @@ The simplest configuration therefore consists of:
45
45
roles:
46
46
- role: elastic.beats
47
47
vars:
48
-
beats_version: 7.13.3
48
+
beats_version: 7.13.4
49
49
beat: filebeat
50
50
beat_conf:
51
51
filebeat:
@@ -56,11 +56,11 @@ The simplest configuration therefore consists of:
56
56
- /var/log/*.log
57
57
```
58
58
59
-
The above installs Filebeat 7.13.3 on the hosts 'localhost'.
59
+
The above installs Filebeat 7.13.4 on the hosts 'localhost'.
60
60
61
61
**Notes**:
62
62
- Beats default version is described in [`beats_version`](https://github.com/elastic/ansible-beats/blob/master/defaults/main.yml#L4). You can override this variable in your playbook to install another version.
63
-
While we are testing this role only with one 7.x and one 6.x version (respectively [7.13.3](https://github.com/elastic/ansible-beats/blob/master/defaults/main.yml#L4) and [6.8.17](https://github.com/elastic/ansible-beats/blob/master/test/integration/standard-6x.yml#L7) at the time of writing), this role should work with others version also in most cases.
63
+
While we are testing this role only with one 7.x and one 6.x version (respectively [7.13.4](https://github.com/elastic/ansible-beats/blob/master/defaults/main.yml#L4) and [6.8.17](https://github.com/elastic/ansible-beats/blob/master/test/integration/standard-6x.yml#L7) at the time of writing), this role should work with others version also in most cases.
64
64
- Beat product is described in `beat` variable. While currently tested Beats are Filebeat, Metricbeat & Packetbeat, this role should work also with other member of [The Beats Family](https://www.elastic.co/products/beats) in most cases.
65
65
66
66
## Testing
@@ -166,7 +166,7 @@ Supported variables are as follows:
166
166
167
167
- **beat** (*MANDATORY*): Beat product. Supported values are: "filebeat", "metricbeat" & "packetbeat" (others beats from [The Beats Family](https://www.elastic.co/products/beats) should work in most cases but aren't currently tested).
168
168
- **beat_conf** (*MANDATORY*): Beat Configuration. Should be defined as a map.
169
-
- **beats_version** (*Defaults to `7.13.3`*): Beats version.
169
+
- **beats_version** (*Defaults to `7.13.4`*): Beats version.
170
170
- **version_lock** (*Defaults to `false`*): Locks the installed version if set to true, thus preventing other processes from updating. This will not impact the roles ability to update the beat on subsequent runs (it unlocks and re-locks if required).
171
171
- **use_repository** (*Defaults to `true`*): Use elastic repo for yum or apt if true. If false, a custom custom_package_url must be provided.
172
172
- **beats_add_repository** (*Defaults to `{use_repository}`*): Install elastic repo for yum or apt if true. If false, the present repositories will be used. Useful if you already have beats packages in your repo.
0 commit comments