A Python package which wanders across your AWS account and records resources in multiple databases
Project description
A Python package which wanders across your AWS account and records your resources in DynamoDB
Installation
pip install cloudwanderer
Usage
Start a local dynamodb
$ docker run -p 8000:8000 amazon/dynamodb-local
Open up python and import and initialise CloudWanderer
>>> import logging
>>> from cloudwanderer import CloudWanderer
>>> from cloudwanderer.storage_connectors import DynamoDbConnector
>>> storage_connector = DynamoDbConnector(
... endpoint_url='http://localhost:8000'
... )
>>> wanderer = CloudWanderer(storage_connectors=[storage_connector])
>>> logging.basicConfig(level='INFO')
>>> storage_connector.init()
Get all the resources from your AWS account and save them to your local dynamodb.
>>> wanderer.write_resources()
Get a list of VPCs back.
>>> vpcs = storage_connector.read_resources(service='ec2', resource_type='vpc')
>>> first_vpc = next(vpcs)
>>> first_vpc.urn
URN(cloud_name='aws', account_id='123456789012', region='eu-west-2', service='ec2', resource_type='vpc', resource_id_parts=['vpc-11111111'])
Load the full details of the resource.
>>> first_vpc.load()
>>> first_vpc.cidr_block
'172.31.0.0/16'
>>> first_vpc.instance_tenancy
'default'
>>> first_vpc.is_default
True
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 cloudwanderer-0.19.1.tar.gz.
File metadata
- Download URL: cloudwanderer-0.19.1.tar.gz
- Upload date:
- Size: 32.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2be47b6e5183b868dd9fc67f8239cceb20c1813dc5a04d27a76c247e57f183f4
|
|
| MD5 |
8c3bcca5d2e3b753de918cfe720ddfc2
|
|
| BLAKE2b-256 |
421016ae45f04391bd530ca00f86d92034780c7a3f49157421d1ad93ccbb8824
|
File details
Details for the file cloudwanderer-0.19.1-py3-none-any.whl.
File metadata
- Download URL: cloudwanderer-0.19.1-py3-none-any.whl
- Upload date:
- Size: 42.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c76df80f7af317fed474f11e013b30e37c9902aa8588118943c7be8c2e849e1d
|
|
| MD5 |
8d91281022a3b0239aaef8769916b788
|
|
| BLAKE2b-256 |
e527d62bc3e63aa040beaa063677010718bf34f00080c411814afd89a9048dd8
|