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
Once you have loaded the index template, load the data stream as well. If you do not load it, you have to give the publisher user `manage` permission on auditbeat-{{stack-version}} index.
203
+
Once you have loaded the index template, load the data stream as well. If you do not load it, you have to give the publisher user `manage` permission on auditbeat-{{version.stack}} index.
Alternatively, you can download other Docker images that contain only features available under the Apache 2.0 license. To download the images, go to [www.docker.elastic.co](https://www.docker.elastic.co).
28
28
29
29
As another option, you can use the hardened [Wolfi](https://wolfi.dev/) image. Using Wolfi images requires Docker version 20.10.10 or higher. For details about why the Wolfi images have been introduced, refer to our article [Reducing CVEs in Elastic container images](https://www.elastic.co/blog/reducing-cves-in-elastic-container-images).
Copy file name to clipboardExpand all lines: docs/reference/auditbeat/setup-repositories.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,17 +31,17 @@ To add the Beats repository for APT:
31
31
sudo apt-get install apt-transport-https
32
32
```
33
33
34
-
3. Save the repository definition to _/etc/apt/sources.list.d/elastic-{{major-release}}.list_:
34
+
3. Save the repository definition to _/etc/apt/sources.list.d/elastic-{{ version.stack | M.x }}.list_:
35
35
36
36
```shell subs=true
37
-
echo"deb https://artifacts.elastic.co/packages/{{major-release}}/apt stable main"| sudo tee -a /etc/apt/sources.list.d/elastic-{{major-release}}.list
37
+
echo"deb https://artifacts.elastic.co/packages/{{ version.stack | M.x }}/apt stable main"| sudo tee -a /etc/apt/sources.list.d/elastic-{{ version.stack | M.x }}.list
38
38
```
39
39
40
40
:::{note}
41
41
The package is free to use under the Elastic license. An alternative package which contains only features that are available under the Apache 2.0 license is also available. To install it, use the following sources list:
42
42
43
43
```shell subs=true
44
-
echo"deb https://artifacts.elastic.co/packages/oss-{{major-release}}/apt stable main"| sudo tee -a /etc/apt/sources.list.d/elastic-{{major-release}}.list
44
+
echo"deb https://artifacts.elastic.co/packages/oss-{{ version.stack | M.x }}/apt stable main"| sudo tee -a /etc/apt/sources.list.d/elastic-{{ version.stack | M.x }}.list
45
45
```
46
46
:::
47
47
@@ -83,9 +83,9 @@ To add the Beats repository for YUM:
83
83
2. Create a file with a `.repo` extension (for example, `elastic.repo`) in your `/etc/yum.repos.d/` directory and add the following lines:
84
84
85
85
```shell subs=true
86
-
[elastic-{{major-release}}]
87
-
name=Elastic repository for {{major-release}} packages
@@ -97,7 +97,7 @@ To add the Beats repository for YUM:
97
97
The package is free to use under the Elastic license. An alternative package which contains only features that are available under the Apache 2.0 license is also available. To install it, use the following `baseurl`in your `.repo` file:
0 commit comments