StackQL AWS provider is available now!
StackQL allows users to query, report, analyze, provision, and operate cloud and SaaS resources using a simple SQL-based framework
With StackQL and the AWS provider, you can run queries like...
SELECT instanceType, COUNT(*) as num_instances
FROM aws.ec2.instances
WHERE region = 'ap-southeast-2'
GROUP BY instanceType;
and much more, including mutation operations using INSERT
and JOIN
operations (within a provider or across different providers).
Provider docs available here, also check out this blog article.
Other providers are available for Azure, GCP, GitHub, Kubernetes, Okta, Netlify and Firebase
Top comments (0)