stackql

SQL interface for querying and managing arbitrary cloud resources

brewmacoslinux
Try with needOr install directly
Source

About

SQL interface for arbitrary resources with full CRUD support

Commands

stackql

Examples

Query AWS EC2 instances using SQL$ stackql exec "SELECT instanceId, instanceType, state FROM aws.ec2.instances WHERE region = 'us-east-1'"
Insert a new resource using SQL syntax$ stackql exec "INSERT INTO google.compute.instances (project, zone, data) VALUES ('my-project', 'us-central1-a', json_object())" --auth google
Start interactive SQL shell for resource queries$ stackql shell