You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: CLI first successful sync hint message (#21175)
Uses cloudquery/cloudquery-api-go#307
Shows a hint message on successful (total resources > 0) sync if the source is `aws` and one of the destinations is `postgresql` or `sqlite`. Works only with bearer tokens (`cloudquery login`).
```
Loading spec(s) from ./aws_to_sqlite.yaml
Starting sync for: aws (cloudquery/[email protected]) -> [sqlite (cloudquery/[email protected])]
Sync completed successfully. Resources: 1337, Errors: 0, Warnings: 0, Time: 3s
🎉 Success!
Run the following command to get your oldest 10 EC2 instances:
sqlite3 ./db.sql "SELECT account_id, instance_id, region, launch_time FROM aws_ec2_instances ORDER BY launch_time ASC LIMIT 10"
```
0 commit comments