From 8b06814b2ffa431533d9c91ccfa8a0ea2d22b460 Mon Sep 17 00:00:00 2001 From: Maciej Skierkowski Date: Tue, 19 Mar 2024 14:39:41 -0700 Subject: [PATCH] Create support.md --- docs/providers/aws/cli-reference/support.md | 38 +++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 docs/providers/aws/cli-reference/support.md diff --git a/docs/providers/aws/cli-reference/support.md b/docs/providers/aws/cli-reference/support.md new file mode 100644 index 000000000..ab2ea0531 --- /dev/null +++ b/docs/providers/aws/cli-reference/support.md @@ -0,0 +1,38 @@ + + + + +### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/aws/cli-reference/login) + + + +# Support + +The `support` command runs an interactive prompt to generate issue reports, or directly connect with our support team. + +It will automatically capture relevent context and omit sensitive details like secrets and account information, from the last command that was run. This streamlines the process for opening new Github issues, using AI chat, and opening support requests. + +If you select the support option, you will prompted to review the generated report prior to submitting to Serverless support. + +```bash +sls support +``` + +## Options +- `--summary` Creates a summary report non-interactively +- `--all` Creates a comprehensive report non-interactively +- `--support` Get help from the Serverless support team. + +## Example + +The `serverless support` can be used with the `--summary` or `--all` options to generate reports non-interactively so the response can be piped to another command, like `pbcopy`. + +``` +serverless support --summary | pbcopy +```