4 lines
212 B
Bash
Executable File
4 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
RESULTS=$(aws rds describe-db-instances --query 'DBInstances[*].DBInstanceIdentifier' --output text --no-cli-pager | sed 's/\t/\n/g' | sort | xargs)
|
|
jq -n --arg result "$RESULTS" '{"result":$result}'
|