How to turn a SHA256 key fingerprint into MD5:
ssh-keygen -l -E md5 -f <(ssh-keyscan -t ssh-ed25519 your_host_name) | awk '{print $2}' | cut -d":" -f 2-
I do computer stuff. When I solve a problem and it's not obvious, I document it here - it's a reference for myself, and hopefully, it can save other people out there days of problem solving, googling and assorted hair-tearing.
How to turn a SHA256 key fingerprint into MD5:
ssh-keygen -l -E md5 -f <(ssh-keyscan -t ssh-ed25519 your_host_name) | awk '{print $2}' | cut -d":" -f 2-
Within AWS CLI
aws ec2 describe-instances --query "Reservations[*].Instances[].[KeyName, PlatformDetails, PrivateIpAddress, InstanceId]" --output=text --no-cli-pager | sortaws rds describe-db-instances --query
"DBInstances[].[DBInstanceIdentifier,Engine]" --output=text
--no-cli-pager | sort