https://github.com/abakermi/cogflow
command-line tool for aws cognito
https://github.com/abakermi/cogflow
Last synced: 4 months 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 (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-08-24T08:09:58.000Z (almost 2 years ago)
- Last Synced: 2025-01-23T09:44:46.462Z (6 months 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
```