Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abakermi/cogflow
command-line tool for aws cognito
https://github.com/abakermi/cogflow
Last synced: about 1 month ago
JSON representation
command-line tool for aws cognito
- Host: GitHub
- URL: https://github.com/abakermi/cogflow
- Owner: abakermi
- License: mit
- Created: 2023-08-24T08:04:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-24T08:09:58.000Z (over 1 year ago)
- Last Synced: 2023-09-05T04:25:56.457Z (over 1 year ago)
- Language: Go
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# CogFlow
CogFlow is a command-line tool designed to simplify interactions with Amazon Cognito user pools and groups. It provides an intuitive way to manage users and groups within your Amazon Cognito setup using simple commands.
## Installation
To install CogFlow, use the following command:
```shell
go install github.com/abakermi/cogflow
```## Usage
**CogFlow** provides several commands to manage users and groups in Amazon Cognito. Here are some examples:
### List all available groups:
```shell
cogflow group list
```
### Create a new group:
```
cogflow group create -g groupname
```
### Delete a group:
```
cogflow group delete -g groupname
```
### Enable a user:
```shell
cogflow user enable -u userid
```
### Disable a user:
```shell
cogflow user disable -u userid
```
### Delete a user:
```shell
cogflow user delete -u userid
```