Skip to main content

Read infrastructure data from your cloud and export it to a SQL database.

Project description

cloud2sql

Read infrastructure data from your cloud and export it to a SQL database.

Installation

Python 3.10 or higher is required. It is recommended to use a separate virtual environment for this project. You can create one with the following command:

python3 -m venv venv --prompt "cloud2sql"
source venv/bin/activate

Once the virtual environment is activated, you can install cloud2sql:

pip install cloud2sql

Usage

The sources for cloud2sql are configured via a configuration file. Create your own configuration by adjusting the config template file. You can safely delete the sections that are not relevant to you (e.g. if you do not use AWS, you can delete the aws section). All sections refer to cloud providers and are enabled if a configuration section is provided.

After the sources are configured, you need to define the url to the database. The following databases are currently supported:

SQLite

sqlite:///path/to/resoto.db

PostgreSQL

postgresql://user:password@host:port/dbname[?key=value&key=value...]

MySQL

mysql://username:password@host/dbname[?key=value&key=value...]

MariaDB

mariadb://username:password@host/dbname[?key=value&key=value...]

My database is not listed here

cloud2sql uses SQLAlchemy to connect to the database. If your database is not listed here, you can check if it is supported in SQLAlchemy Dialects. Install the relevant driver and use the connection string from the documentation.

Example

We use a minimal configuration example and export the data to a SQLite database. The example uses our AWS default credentials and the default kubernetes config.

cloud2sql --config config-example.yaml --db "sqlite:///resoto.db"

Local Development

Create a local development environment with the following command:

make setup
source venv/bin/activate

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cloud2sql-0.4.0.tar.gz (13.9 kB view hashes)

Uploaded Source

Built Distribution

cloud2sql-0.4.0-py3-none-any.whl (14.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page