Skip to content

Commit 1dc9641

Browse files
committed
revamp identitystore
1 parent cb868af commit 1dc9641

File tree

1 file changed

+25
-17
lines changed

1 file changed

+25
-17
lines changed
Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: "Identity Store"
3-
linkTitle: "Identity Store"
43
description: Get started with Identity Store on LocalStack
54
tags: ["Ultimate"]
65
---
@@ -11,7 +10,7 @@ Identity Store is a managed service that enables the creation and management of
1110
Groups are used to manage access to AWS resources, and Identity Store provides a central location to create and manage groups across your AWS accounts.
1211

1312
LocalStack allows you to use the Identity Store APIs to create and manage groups in your local environment.
14-
The supported APIs are available on our [API Coverage Page]({{< ref "coverage_identitystore" >}}), which provides information on the extent of Identity Store integration with LocalStack.
13+
The supported APIs are available on our [API Coverage Page](), which provides information on the extent of Identity Store integration with LocalStack.
1514

1615
## Getting started
1716

@@ -26,15 +25,18 @@ This guide will demonstrate how to create a group within Identity Store, list al
2625
You can create a new group in the Identity Store using the [`CreateGroup`](https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_CreateGroup.html) API.
2726
Execute the following command to create a group with an identity store ID of `testls`:
2827

29-
{{< command >}}
30-
$ awslocal identitystore create-group --identity-store-id testls
31-
<disable-copy>
28+
```bash
29+
awslocal identitystore create-group --identity-store-id testls
30+
```
31+
32+
You can see an output similar to the following:
33+
34+
```bash
3235
{
3336
"GroupId": "38cec731-de22-45bf-9af7-b74457bba884",
3437
"IdentityStoreId": "testls"
3538
}
36-
</disable-copy>
37-
{{< / command >}}
39+
```
3840

3941
Copy the `GroupId` value from the output, as it will be needed in subsequent steps.
4042

@@ -43,9 +45,13 @@ Copy the `GroupId` value from the output, as it will be needed in subsequent ste
4345
After creating groups, you might want to list all groups within the Identity Store to manage or review them.
4446
Run the following command to list all groups using the [`ListGroups`](https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_ListGroups.html) API:
4547

46-
{{< command >}}
47-
$ awslocal identitystore list-groups --identity-store-id testls
48-
<disable-copy>
48+
```bash
49+
awslocal identitystore list-groups --identity-store-id testls
50+
```
51+
52+
You can see an output similar to the following:
53+
54+
```bash
4955
{
5056
"Groups": [
5157
{
@@ -55,8 +61,7 @@ $ awslocal identitystore list-groups --identity-store-id testls
5561
}
5662
]
5763
}
58-
</disable-copy>
59-
{{< / command >}}
64+
```
6065

6166
This command returns a list of all groups, including the group you created in the previous step.
6267

@@ -65,15 +70,18 @@ This command returns a list of all groups, including the group you created in th
6570
To view details about a specific group, use the [`DescribeGroup`](https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_DescribeGroup.html) API.
6671
Run the following command to describe the group you created in the previous step:
6772

68-
{{< command >}}
69-
$ awslocal describe-group --identity-store-id testls --group-id 38cec731-de22-45bf-9af7-b74457bba884
70-
<disable-copy>
73+
```bash
74+
awslocal describe-group --identity-store-id testls --group-id 38cec731-de22-45bf-9af7-b74457bba884
75+
```
76+
77+
You can see an output similar to the following:
78+
79+
```bash
7180
{
7281
"GroupId": "38cec731-de22-45bf-9af7-b74457bba884",
7382
"ExternalIds": [],
7483
"IdentityStoreId": "testls"
7584
}
76-
</disable-copy>
77-
{{< / command >}}
85+
```
7886

7987
This command provides detailed information about the specific group, including its ID and any external IDs associated with it.

0 commit comments

Comments
 (0)