Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Deprecate /_xpack/security in favor of /_security #26897

Merged
merged 1 commit into from
Dec 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/development/security/rbac.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ When {kib} first starts up, it executes the following `POST` request against {es

[source,js]
----------------------------------
POST /_xpack/security/privilege
POST /_security/privilege
Content-Type: application/json
Authorization: Basic kibana changeme

Expand Down Expand Up @@ -80,7 +80,7 @@ The {es} {ref}/security-api-has-privileges.html[has privileges API] determines w

[source,js]
----------------------------------
POST /_xpack/security/user/_has_privileges
POST /_security/user/_has_privileges
Content-Type: application/json
Authorization: Basic foo_read_only_user password

Expand Down Expand Up @@ -110,7 +110,7 @@ Within the secured instance of the `SavedObjectsClient` the `_has_privileges` ch

[source,js]
----------------------------------
POST /_xpack/security/user/_has_privileges
POST /_security/user/_has_privileges
Content-Type: application/json
Authorization: Basic foo_legacy_user password

Expand Down
2 changes: 1 addition & 1 deletion docs/security/reporting.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ the following request creates a `reporter` user that has the
+
[source, sh]
---------------------------------------------------------------
POST /_xpack/security/user/reporter
POST /_security/user/reporter
{
"password" : "x-pack-test-password",
"roles" : ["kibana_user", "reporting_user"],
Expand Down
2 changes: 1 addition & 1 deletion docs/security/securing-kibana.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ role:

[source,js]
--------------------------------------------------------------------------------
POST /_xpack/security/user/jacknich
POST /_security/user/jacknich
{
"password" : "t0pS3cr3t",
"roles" : [ "kibana_user" ]
Expand Down