Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/turbot/steampipe-sqlite
Steampipe SQLite is a zero-ETL engine for SQLite. Virtual tables translate queries into live API calls for cloud services and APIs. Hundreds of plugins with thousands of documented examples.
https://github.com/turbot/steampipe-sqlite
aws azure data devsecops etl gcp golang kubernetes security sql sqlite steampipe steampipe-engine zero-etl
Last synced: 2 days ago
JSON representation
Steampipe SQLite is a zero-ETL engine for SQLite. Virtual tables translate queries into live API calls for cloud services and APIs. Hundreds of plugins with thousands of documented examples.
- Host: GitHub
- URL: https://github.com/turbot/steampipe-sqlite
- Owner: turbot
- License: apache-2.0
- Created: 2023-10-13T12:26:32.000Z (about 1 year ago)
- Default Branch: develop
- Last Pushed: 2024-06-28T12:59:18.000Z (4 months ago)
- Last Synced: 2024-08-02T05:09:49.203Z (3 months ago)
- Topics: aws, azure, data, devsecops, etl, gcp, golang, kubernetes, security, sql, sqlite, steampipe, steampipe-engine, zero-etl
- Language: Go
- Homepage: https://steampipe.io
- Size: 283 KB
- Stars: 50
- Watchers: 8
- Forks: 3
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Steampipe SQLite
A family of SQLite extensions, each derived from a [Steampipe plugin](https://hub.steampipe.io/plugins), that fetch data from cloud services and APIs.
## Getting Started
You can use an installer that enables you to choose a plugin and download the SQLite extension for that plugin.
**[Installation guide →](https://steampipe.io/docs/steampipe_sqlite/install)**
## Examples
### Select EC2 instances
```sql
select * from aws_ec2_instance;
```### Filter to running instances
```sql
select * from aws_ec2_instance
where instance_state='running';
```### Select a subset of columns
```sql
select arn, instance_state from aws_ec2_instance
where instance_state='running';
```### Limit results
```sql
select arn, instance_state from aws_ec2_instance
where instance_state='running'
limit 10;
```
## DevelopingTo build an extension, use the provided `Makefile`. For example, to build the AWS extension, run the following command. The built extension lands in your current directory.
```bash
make build plugin=aws
```## Open Source & Contributing
This repository is published under the [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) license. Please see our [code of conduct](https://github.com/turbot/.github/blob/main/CODE_OF_CONDUCT.md). We look forward to collaborating with you!
[Steampipe](https://steampipe.io) is a product produced exclusively by [Turbot HQ, Inc](https://turbot.com). It is distributed under our commercial terms. Others are allowed to make their own distribution of the software, but cannot use any of the Turbot trademarks, cloud services, etc. You can learn more in our [Open Source FAQ](https://turbot.com/open-source).