forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into task-manager/refactor-oversized-class
* master: (43 commits) [ML] Transforms: Fix tab ids for expanded row. (elastic#80666) server logs config paths to use for runner (elastic#52980) Fix audit logger logging to console even when disabled (elastic#80928) skip flaky suite (elastic#80929) Added Enterprise Search config to kibana-docker (elastic#80872) skip flaky suite (elastic#80914) [keystore_cli] parse values as JSON before adding to keystore (elastic#80848) [Ingest Manager] Fix for comparing versions with -SNAPSHOT suffix (elastic#80742) ECS audit logging (elastic#74640) [Uptime] Add client-side unit tests for remaining synthetics code (elastic#80215) [Security_Solution][Resolver] Promote z-index on node labels (elastic#80854) Move renderHeaderActions back into mount useEffect + update tests (elastic#80861) [Reporting] Document Network Policy configuration (elastic#80431) [Reporting] Add contextual documentation for CSV Max Bytes setting (elastic#80782) Add catch for Enterprise Search sending back a 401 response instead of redirect (elastic#80757) [Actions] Back Button on Add Connector Flyout (elastic#80160) removing `kibana_datatable` in favor of `datatable` (elastic#80548) [Alerting UI] Updating 'Add new' wording (elastic#80509) [Docs] Document Encrypted Saved Objects functionality. (elastic#80183) [Discover] fix auto-refresh (elastic#80635) ...
- Loading branch information
Showing
498 changed files
with
8,653 additions
and
3,965 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
[role="xpack"] | ||
[[saved-objects-api-rotate-encryption-key]] | ||
=== Rotate encryption key API | ||
++++ | ||
<titleabbrev>Rotate encryption key</titleabbrev> | ||
++++ | ||
|
||
experimental[] Rotate the encryption key for encrypted saved objects. | ||
|
||
If a saved object cannot be decrypted using the primary encryption key, then {kib} will attempt to decrypt it using the specified <<xpack-encryptedSavedObjects-keyRotation-decryptionOnlyKeys, decryption-only keys>>. In most of the cases this overhead is negligible, but if you're dealing with a large number of saved objects and experiencing performance issues, you may want to rotate the encryption key. | ||
|
||
[IMPORTANT] | ||
============================================================================ | ||
Bulk key rotation can consume a considerable amount of resources and hence only user with a `superuser` role can trigger it. | ||
============================================================================ | ||
|
||
[[saved-objects-api-rotate-encryption-key-request]] | ||
==== Request | ||
|
||
`POST <kibana host>:<port>/api/encrypted_saved_objects/_rotate_key` | ||
|
||
[[saved-objects-api-rotate-encryption-key-request-query-params]] | ||
==== Query parameters | ||
|
||
`type`:: | ||
(Optional, string) Limits encryption key rotation only to the saved objects with the specified type. By default, {kib} tries to rotate the encryption key for all saved object types that may contain encrypted attributes. | ||
|
||
`batchSize`:: | ||
(Optional, number) Specifies a maximum number of saved objects that {kib} can process in a single batch. Bulk key rotation is an iterative process since {kib} may not be able to fetch and process all required saved objects in one go and splits processing into consequent batches. By default, the batch size is 10000, which is also a maximum allowed value. | ||
|
||
[[saved-objects-api-rotate-encryption-key-response-body]] | ||
==== Response body | ||
|
||
`total`:: | ||
(number) Indicates the total number of _all_ encrypted saved objects (optionally filtered by the requested `type`), regardless of the key {kib} used for encryption. | ||
|
||
`successful`:: | ||
(number) Indicates the total number of _all_ encrypted saved objects (optionally filtered by the requested `type`), regardless of the key {kib} used for encryption. | ||
+ | ||
NOTE: In most cases, `total` will be greater than `successful` even if `failed` is zero. The reason is that {kib} may not need or may not be able to rotate encryption keys for all encrypted saved objects. | ||
|
||
`failed`:: | ||
(number) Indicates the number of the saved objects that were still encrypted with one of the old encryption keys that {kib} failed to re-encrypt with the primary key. | ||
|
||
[[saved-objects-api-rotate-encryption-key-response-codes]] | ||
==== Response code | ||
|
||
`200`:: | ||
Indicates a successful call. | ||
|
||
`400`:: | ||
Indicates that either query parameters are wrong or <<xpack-encryptedSavedObjects-keyRotation-decryptionOnlyKeys, decryption-only keys>> aren't configured. | ||
|
||
`429`:: | ||
Indicates that key rotation is already in progress. | ||
|
||
[[saved-objects-api-rotate-encryption-key-example]] | ||
==== Examples | ||
|
||
[[saved-objects-api-rotate-encryption-key-example-1]] | ||
===== Encryption key rotation with default parameters | ||
|
||
[source,sh] | ||
-------------------------------------------------- | ||
$ curl -X POST /api/encrypted_saved_objects/_rotate_key | ||
-------------------------------------------------- | ||
// KIBANA | ||
|
||
The API returns the following: | ||
|
||
[source,sh] | ||
-------------------------------------------------- | ||
{ | ||
"total": 1000, | ||
"successful": 300, | ||
"failed": 0 | ||
} | ||
-------------------------------------------------- | ||
|
||
The result indicates that the encryption key was successfully rotated for 300 out of 1000 saved objects with encrypted attributes, and 700 of the saved objects either didn't require key rotation, or were encrypted with an unknown encryption key. | ||
|
||
[[saved-objects-api-rotate-encryption-key-example-2]] | ||
===== Encryption key rotation for the specific type with reduce batch size | ||
|
||
[IMPORTANT] | ||
============================================================================ | ||
Default parameters are optimized for speed. Change the parameters only when necessary. However, if you're experiencing any issues with this API, you may want to decrease a batch size or rotate the encryption keys for the specific types only. In this case, you may need to run key rotation multiple times in a row. | ||
============================================================================ | ||
|
||
In this example, key rotation is performed for all saved objects with the `alert` type in batches of 5000. | ||
|
||
[source,sh] | ||
-------------------------------------------------- | ||
$ curl -X POST /api/encrypted_saved_objects/_rotate_key?type=alert&batchSize=5000 | ||
-------------------------------------------------- | ||
// KIBANA | ||
|
||
The API returns the following: | ||
|
||
[source,sh] | ||
-------------------------------------------------- | ||
{ | ||
"total": 100, | ||
"successful": 100, | ||
"failed": 0 | ||
} | ||
-------------------------------------------------- | ||
|
||
The result indicates that the encryption key was successfully rotated for all 100 saved objects with the `alert` type. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 0 additions & 25 deletions
25
docs/development/core/server/kibana-plugin-core-server.auditableevent.md
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
docs/development/core/server/kibana-plugin-core-server.auditableevent.message.md
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
docs/development/core/server/kibana-plugin-core-server.auditableevent.type.md
This file was deleted.
Oops, something went wrong.
36 changes: 0 additions & 36 deletions
36
docs/development/core/server/kibana-plugin-core-server.auditor.add.md
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
docs/development/core/server/kibana-plugin-core-server.auditor.md
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
docs/development/core/server/kibana-plugin-core-server.auditor.withauditscope.md
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
docs/development/core/server/kibana-plugin-core-server.auditorfactory.asscoped.md
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
docs/development/core/server/kibana-plugin-core-server.auditorfactory.md
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
docs/development/core/server/kibana-plugin-core-server.audittrailsetup.md
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.