AWS resource inventory scanner and draw.io architecture diagram generator
Project description
aws-radar
AWS resource inventory scanner + draw.io architecture diagram generator.
Scans your AWS account(s) via SSO or IAM credentials and produces:
- A CSV inventory of every running resource
- A
.drawiofile you can open in diagrams.net — with AWS icons, region containers, and service connections auto-wired
Supported services
EC2 · RDS / Aurora · Lambda · ECS · EKS · ElastiCache · DynamoDB · S3 · OpenSearch · SQS · SNS · ALB / NLB
Installation
pip install aws-radar
Quick start
# One-shot: inventory + diagram
aws-radar run --profile my-sso-profile --all-regions --output architecture.drawio
# Or step by step:
aws-radar inventory --profile my-sso-profile --all-regions --export inventory.csv
aws-radar diagram --input inventory.csv --output architecture.drawio
Then open architecture.drawio at app.diagrams.net.
AWS SSO usage
# Configure SSO once
aws configure sso
# Login before each session
aws sso login --profile my-profile
# Run
aws-radar run --profile my-profile --all-regions
Multi-account
for profile in prod staging dev; do
aws sso login --profile $profile
aws-radar run --profile $profile --csv ${profile}.csv --output ${profile}.drawio
done
Python API
import boto3
from aws_radar.inventory import run_inventory
from aws_radar.drawio import build_drawio
session = boto3.Session(profile_name="my-profile")
rows = run_inventory(["us-east-1", "eu-west-1"], session, account_id="123456789012")
mxfile = build_drawio(rows, account_id="123456789012")
Required IAM permissions
Attach the AWS-managed ReadOnlyAccess policy, or grant these specific actions:
ec2:Describe* · rds:Describe* · lambda:ListFunctions
ecs:List*/Describe* · eks:List*/Describe*
elasticache:Describe* · dynamodb:ListTables/DescribeTable
s3:ListAllMyBuckets · opensearch:List*/Describe*
sqs:ListQueues · sns:ListTopics
elasticloadbalancing:DescribeLoadBalancers
sts:GetCallerIdentity
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws_radar-0.1.1.tar.gz.
File metadata
- Download URL: aws_radar-0.1.1.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06955485dce0f10fe35782129793419218c1237565778c3b5930d73fa535cfb8
|
|
| MD5 |
73dc163c09fd0cba50c0d8632ec7a2dc
|
|
| BLAKE2b-256 |
170d6b32855fa95ceae5db3e0f132d3a56343955a2622183e95d8ec2502e2f07
|
File details
Details for the file aws_radar-0.1.1-py3-none-any.whl.
File metadata
- Download URL: aws_radar-0.1.1-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcf0751339542b4dc28ba57e0628e2bf8e64d67813dc8b2552d1a033566a814d
|
|
| MD5 |
5731d89e256c1c7e42639fae39d368c9
|
|
| BLAKE2b-256 |
d89c27e2b7503930a979fede3dae9e3b2c11e16c642507c768d0b90defe021c5
|