
A tool for checking cloud wiring
aws-probe is a CLI toolkit designed to troubleshoot and verify connectivity to
AWS resources. It helps developers and operators confirm that their "wiring"
(IAM roles, security groups, network paths) is correctly configured for various
AWS services.
- Identity Verification: Quickly check your current AWS credentials and assumed role.
- Service Inspection: List and probe resources for S3, SQS, SNS, and Secrets Manager.
- MSK Power Tools: List MSK clusters and topics, and interact with Kafka via IAM authentication to produce and consume messages.
View Installation Options
go install github.com/xenos76/aws-probe@latestRelease binaries and DEB, RPM, APK packages can be downloaded from the
repo's releases section.
Binaries and packages are built for Linux and MacOS, amd64 and arm64.
Configure the repo the following way:
echo "deb [trusted=yes] https://repo.os76.xyz/apt stable main" | sudo tee /etc/apt/sources.list.d/os76.listthen:
sudo apt-get update && sudo apt-get install -y aws-probeConfigure the repo the following way:
echo '[os76]
name=OS76 Yum Repo
baseurl=https://repo.os76.xyz/yum/$basearch/
enabled=1
gpgcheck=0
repo_gpgcheck=0' | sudo tee /etc/yum.repos.d/os76.repothen:
sudo yum install aws-probeAdd Os76 Homebrew repository:
brew tap xenos76/tapInstall aws-probe:
brew install --casks aws-probeNote: aws-probe is not configured and signed as a MacOS app. Manual steps
might be needed to enable the execution of the binary.
aws-probe whoamiList MSK clusters and topics, produce and consume messages.
# List all clusters
aws-probe msk --list-clusters
# List topics for a cluster
aws-probe msk --list-topics <cluster-arn>
# Produce a message
aws-probe msk --produce --topic <topic> --message "hello world" --cluster-arn <arn>
# Consume messages from the beginning
aws-probe msk --consume --topic <topic> --cluster-arn <arn> --from-beginningManage S3 buckets and objects.
# List all buckets
aws-probe s3 --list-buckets
# List objects in a bucket
aws-probe s3 --list-bucket my-bucket --path logs/ --recursive
# Get object metadata
aws-probe s3 --get-metadata my-bucket --key my-file.txtList and retrieve secrets.
# List all secrets
aws-probe secrets --list-secrets
# Get secret value
aws-probe secrets --get-secret-value my-secret-id# List SNS topics
aws-probe sns --list-topics
# List SNS subscriptions for a topic
aws-probe sns --list-subscriptions <topic-arn>
# List SQS queues
aws-probe sqs --list-queues