Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/youjinp/chameleon


https://github.com/youjinp/chameleon

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Chameleon

[![Latest release](https://img.shields.io/github/release/youjinp/chameleon.svg)](https://github.com/youjinp/chameleon/releases)

A CLI tool that helps with copying DynamoDB data.

## Installation

### Homebrew

```bash
brew install youjinp/brew/chameleon
```

## Usage

### Download dynamodb table to a file

```bash
export AWS_ACCESS_KEY_ID='id'
export AWS_SECRET_ACCESS_KEY='key'
export AWS_SESSION_TOKEN='token'
export AWS_DEFAULT_REGION='us-east-1'

chameleon copy -t -o
```

### Write data into dynamodb from the created file

```bash
export AWS_ACCESS_KEY_ID='id'
export AWS_SECRET_ACCESS_KEY='key'
export AWS_SESSION_TOKEN='token'
export AWS_DEFAULT_REGION='us-east-1'

chameleon paste -t -f
```