mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
Changed alerting wrong param name for help xpack.encrypted_saved_objects.encryptionKey to xpack.encryptedSavedObjects.encryptionKey (#63307)
This commit is contained in:
parent
cc85573c8a
commit
53ee20b306
5 changed files with 6 additions and 6 deletions
|
@ -9,7 +9,7 @@ Alerts and actions are enabled by default in {kib}, but require you configure th
|
|||
|
||||
. <<using-kibana-with-security,Set up {kib} to work with {stack} {security-features}>>.
|
||||
. <<configuring-tls-kib-es,Set up TLS encryption between {kib} and {es}>>.
|
||||
. <<general-alert-action-settings,Specify a value for `xpack.encrypted_saved_objects.encryptionKey`>>.
|
||||
. <<general-alert-action-settings,Specify a value for `xpack.encryptedSavedObjects.encryptionKey`>>.
|
||||
|
||||
You can configure the following settings in the `kibana.yml` file.
|
||||
|
||||
|
@ -18,7 +18,7 @@ You can configure the following settings in the `kibana.yml` file.
|
|||
[[general-alert-action-settings]]
|
||||
==== General settings
|
||||
|
||||
`xpack.encrypted_saved_objects.encryptionKey`::
|
||||
`xpack.encryptedSavedObjects.encryptionKey`::
|
||||
|
||||
A string of 32 or more characters used to encrypt sensitive properties on alerts and actions before they're stored in {es}. Third party credentials — such as the username and password used to connect to an SMTP service — are an example of encrypted properties.
|
||||
+
|
||||
|
|
|
@ -157,7 +157,7 @@ Pre-packaged *alert types* simplify setup, hide the details complex domain-speci
|
|||
If you are using an *on-premises* Elastic Stack deployment with <<using-kibana-with-security, *security*>>:
|
||||
|
||||
* TLS must be configured for communication <<configuring-tls-kib-es, between {es} and {kib}>>. {kib} alerting uses <<api-keys, API keys>> to secure background alert checks and actions, and API keys require {ref}/configuring-tls.html#tls-http[TLS on the HTTP interface].
|
||||
* In the kibana.yml configuration file, add the <<alert-action-settings-kb,`xpack.encrypted_saved_objects.encryptionKey` setting>>
|
||||
* In the kibana.yml configuration file, add the <<alert-action-settings-kb,`xpack.encryptedSavedObjects.encryptionKey` setting>>
|
||||
|
||||
[float]
|
||||
[[alerting-security]]
|
||||
|
|
|
@ -166,7 +166,7 @@ take a look at the source code of this library to know how encryption is perform
|
|||
parameters are used, but in short it's AES Encryption with AES-256-GCM that uses random initialization vector and salt.
|
||||
|
||||
As with encryption key for Kibana's session cookie, master encryption key used by `encrypted_saved_objects` plugin can be
|
||||
defined as a configuration value (`xpack.encrypted_saved_objects.encryptionKey`) via `kibana.yml`, but it's **highly
|
||||
defined as a configuration value (`xpack.encryptedSavedObjects.encryptionKey`) via `kibana.yml`, but it's **highly
|
||||
recommended** to define this key in the [Kibana Keystore](https://www.elastic.co/guide/en/kibana/current/secure-settings.html)
|
||||
instead. The master key should be cryptographically safe and be equal or greater than 32 bytes.
|
||||
|
||||
|
|
|
@ -92,7 +92,7 @@ describe('health check', () => {
|
|||
|
||||
const description = queryByRole(/banner/i);
|
||||
expect(description!.textContent).toMatchInlineSnapshot(
|
||||
`"To create an alert, set a value for xpack.encrypted_saved_objects.encryptionKey in your kibana.yml file. Learn how."`
|
||||
`"To create an alert, set a value for xpack.encryptedSavedObjects.encryptionKey in your kibana.yml file. Learn how."`
|
||||
);
|
||||
|
||||
const action = queryByText(/Learn/i);
|
||||
|
|
|
@ -132,7 +132,7 @@ const EncryptionError = ({
|
|||
defaultMessage: 'To create an alert, set a value for ',
|
||||
}
|
||||
)}
|
||||
<EuiCode>{'xpack.encrypted_saved_objects.encryptionKey'}</EuiCode>
|
||||
<EuiCode>{'xpack.encryptedSavedObjects.encryptionKey'}</EuiCode>
|
||||
{i18n.translate(
|
||||
'xpack.triggersActionsUI.components.healthCheck.encryptionErrorAfterKey',
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue