Add deprecation warnings for Mod commands

* print errors and warnings to stderr
* fix tests
* Update description
* update sample workspace profile content
* Changelog for v0.22.0
This commit is contained in:
Puskar Basu
2024-03-06 16:43:17 +05:30
committed by GitHub
parent b4f15ebfd4
commit 410fe9ef6f
13 changed files with 136 additions and 99 deletions

View File

@@ -24,29 +24,26 @@ var rootCmd = &cobra.Command{
Use: "steampipe [--version] [--help] COMMAND [args]",
Version: version.SteampipeVersion.String(),
Short: "Query cloud resources using SQL",
Long: `Query cloud resources using SQL.
The available commands for execution are listed below.
The most common, useful commands are shown first, followed by
less common or more advanced commands. If you're just getting
started with Steampipe, stick with the common commands. For the
other commands, please read the help and docs before usage.
Getting started:
Long: `Steampipe: select * from cloud;
Dynamically query APIs, code and more with SQL.
Zero-ETL from 140+ data sources.
Common commands:
# Interactive SQL query console
steampipe query
# Install a plugin from the hub - https://hub.steampipe.io
steampipe plugin install aws
# Execute a defined SQL query
steampipe query "select * from aws_s3_bucket"
# Install a plugin
steampipe plugin install azure
# Get help for a command
steampipe help query
Documentation available at https://steampipe.io/docs
Documentation: https://steampipe.io/docs
`,
}