4 lines
172 B
Bash
Executable File
4 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
RESULTS=$(aws rds describe-db-instances --query 'DBInstances[*].DBInstanceIdentifier' --output text | xargs)
|
|
jq -n --arg result "$RESULTS" '{"result":$result}'
|