-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sayali Gaikawad <[email protected]>
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
nightly-playground/resources/security-config/internal_users.yml
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,27 @@ | ||
# This is the internal user database | ||
# The hash value is a bcrypt hash and can be generated with plugin/tools/hash.sh | ||
|
||
_meta: | ||
type: internalusers | ||
config_version: 2 | ||
|
||
# Define your internal users here | ||
|
||
admin: | ||
hash: someHashedValue | ||
reserved: true | ||
backend_roles: | ||
- admin | ||
description: Admin user with customized password | ||
|
||
kibanaserver: | ||
hash: someHashedValue | ||
reserved: true | ||
description: OpenSearch Dashboards user with customized password | ||
|
||
readall: | ||
hash: someHashedValue | ||
reserved: false | ||
backend_roles: | ||
- readall | ||
description: Demo readall user |