Skip to content

Commit

Permalink
updated aws_rds_list.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
HariSekhon committed Oct 11, 2024
1 parent f0b127f commit 996fae9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws/aws_rds_list.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

# shellcheck disable=SC2034,SC2154
usage_description="
List RDS instances with select fields - Name, Status, Engine, AZ, Instance Type, Storage
List RDS instances with select fields - Name, Status, Engine, AZ, Instance Type, Storage, Endpoint DNS FQDN Address
$usage_aws_cli_required
"
Expand All @@ -40,5 +40,5 @@ if [ $# -gt 0 ]; then
fi

aws rds describe-db-instances \
--query "DBInstances[*].[DBInstanceIdentifier, DBInstanceStatus, Engine, AvailabilityZone, DBInstanceClass, AllocatedStorage]" \
--query "DBInstances[*].[DBInstanceIdentifier, DBInstanceStatus, Engine, AvailabilityZone, DBInstanceClass, AllocatedStorage, Endpoint.Address]" \
--output table

0 comments on commit 996fae9

Please sign in to comment.