Skip to content

Commit 73b048f

Browse files
authored
Merge branch 'main' into nexus-tcld-docs
2 parents b4655eb + 9db9b74 commit 73b048f

30 files changed

Lines changed: 18386 additions & 15119 deletions

README.md

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ export TEMPORAL_CLOUD_API_KEY=<api-key>
4747
tcld ...
4848
```
4949

50-
# API Key Management (Preview)
51-
*The API Key feature is currently in "Preview Release". Customers must be invited to use this feature. Please reach out to Temporal Cloud support for more information.*
50+
# API Key Management
5251

5352
API Keys provide machine based authentication for Temporal Control Plane APIs. These keys are generated for and inherit the roles and permissions of the current user. API Keys are required to have a duration / expiry for preview within 1 to 90 days. We recommend to always set a duration / expiry for your API keys. This will allow you to rotate your API keys frequently and minimize the exposure of a token in case it is compromised.
5453
### Creating an API Key:
@@ -207,9 +206,40 @@ tcld user-group list
207206

208207
### Get group information:
209208
```
210-
tcld user-group get <group-id>
209+
tcld user-group get -id <group-id>
211210
```
212211

212+
### Delete group:
213+
214+
```
215+
tcld user-group delete -id <group-id>
216+
```
217+
218+
### Group membership management:
219+
220+
Listing members of a user group.
221+
222+
```
223+
tcld user-group list-members -id <group-id>
224+
```
225+
226+
Adding users to a group.
227+
228+
```
229+
tcld user-group add-users -id <group-id> -e <user-email>
230+
```
231+
232+
Multiple users can be added in one call by specifying multiple `-e` flags.
233+
234+
Removing users from a group.
235+
236+
```
237+
tcld user-group remove-users -id <group-id> -e <user-email>
238+
```
239+
240+
Multiple users can be removed in one call by specifying multiple `-e` flags.
241+
242+
213243
### Set group access:
214244
```
215245
tcld user-group set-access -id <group-id> --account-role read --namespace-role <namespace>-read

0 commit comments

Comments
 (0)