-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Optional --detail flag for instance list
- So that I get all details for each instance without having to run two commands in a loop.
- like today and then in a non-useable output format with repeat header and table header and footer
for i in `./neo4j-cli aura instance list | grep '│' | cut -d'│' -f 2 | grep -v ID`; do
./neo4j-cli aura instance get $i;
doneOptional --id or -s or --short output that only lists the id's for scripting
Today you have to do things like grep + cut or jq
only list id's
./neo4j-cli aura instance list --output json | jq -r '.data[].id'
convert output to csv
./neo4j-cli aura instance list --output json | jq -r '.data[] | [.id,.name,.tenant_id] | @csv'
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels