Manage Redshift database roles and privileges in GitOps style.
Install binary from crates.io
bash
cargo install grant
Using grant
tool:
```bash $ grant --help
Manage database roles and privileges in GitOps style
USAGE:
grant
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS: apply Apply changes gen Generate project help Prints this message or the help of the given subcommand(s) ```
```bash grant gen --target duyet-cluster
mkdir duyet-cluster && cd $_ grant gen --target . ```
Dry run:
bash
export DB_URL="postgres://postgres:postgres@localhost:5439/postgres"
grant apply --dryrun -f ./examples/example.yaml --conn=$DB_URL
Apply to cluster:
```bash grant apply -f ./examples/example.yaml
```
```bash $ grant gen-pass
Generated password: q)ItTjN$EXlkF@Tl ```
Clone the repo:
bash
git clone https://github.com/duyet/grant.rs && cd grant.rs
Postgres is required for testing, you might need to use the docker-compose.yaml
:
bash
docker-compose up -d
Make sure you have connection to postgres://postgres:postgres@localhost:5432/postgres
.
To run the unittest:
bash
cargo test
MIT