From 26b4b466df073e429e64f6047fbaab2400971b67 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Tue, 16 Oct 2018 20:39:44 -0700 Subject: [PATCH] Fix a typo in multi-user doc (#6643) --- docs/multi-user/README.md | 17 ++++++++++++++--- docs/sts/README.md | 8 ++++---- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/docs/multi-user/README.md b/docs/multi-user/README.md index bb13d74ab..4205b3254 100644 --- a/docs/multi-user/README.md +++ b/docs/multi-user/README.md @@ -37,10 +37,10 @@ Create a new user `newuser` on Minio use `mc admin users`, additionally specify mc admin users add myminio newuser newuser123 getonly ``` -### 3. Revoke user -Temporarily revoke access for `newuser`. +### 3. Disable user +Disable user `newuser`. ``` -mc admin users revoke myminio newuser +mc admin users disable myminio newuser ``` ### 4. Remove user @@ -48,3 +48,14 @@ Remove the user `newuser`. ``` mc admin users remove myminio newuser ``` + +### 5. List all users +List all enabled and disabled users. +``` +mc admin users list myminio +``` + +## Explore Further +- [Minio STS Quickstart Guide](https://docs.minio.io/docs/minio-sts-quickstart-guide) +- [Minio Admin Complete Guide](https://docs.minio.io/docs/minio-admin-complete-guide.html) +- [The Minio documentation website](https://docs.minio.io) diff --git a/docs/sts/README.md b/docs/sts/README.md index 55a953c5e..7aa072c98 100644 --- a/docs/sts/README.md +++ b/docs/sts/README.md @@ -6,9 +6,9 @@ The Minio Security Token Service (STS) is an endpoint service that enables clien Following are advantages for using temporary credentials: -- No need embed long-term credentials with an application. -- No need to provide access to buckets and objects without having to define static credentials. -- Temporary credentials have a limited lifetime, no need to rotate them or explicitly revoke them when they're no longer needed. After temporary credentials expire, they cannot be reused. +- Eliminates the need to embed long-term credentials with an application. +- Eliminates the need to provide access to buckets and objects without having to define static credentials. +- Temporary credentials have a limited lifetime, there is no need to rotate them or explicitly revoke them. Expired temporary credentials cannot be reused. ## Identity Federation [**Client grants**](./client-grants.md) - Let applications request `client_grants` using any well-known third party identity provider such as KeyCloak, WSO2. This is known as the client grants approach to temporary access. Using this approach helps clients keep Minio credentials to be secured. Minio STS client grants supports WSO2, Keycloak. @@ -62,5 +62,5 @@ go run full-example.go -cid PoEgXP6uVO45IsENRngDXj5Au5Ya -csec eKsw6z8CtOJVBtrOW ``` ## Explore Further -- [Minio STS Quickstart Guide](https://docs.minio.io/docs/minio-sts-quickstart-guide) +- [Minio Admin Complete Guide](https://docs.minio.io/docs/minio-admin-complete-guide.html) - [The Minio documentation website](https://docs.minio.io)