Mariusz Nowak b4a25d70d3 feat: Remove tab autocomplete feature
Reasoning:
- Performance is very poor due to slow command startup time
- `tabtab` package is no longer maintained and shares security issues
- Feature usage is relatively low (telemetry data shows 7% of users has the autocompletion on)

BREAKING CHANGE:
Opt-in tab-tab autocompletion feature is removed due to performance and security issues
2022-01-27 15:21:58 +01:00

41 lines
1.1 KiB
Markdown

<!--
title: Serverless Framework Commands - AWS Lambda - Config
menuText: config
menuOrder: 1
description: Configure Serverless
layout: Doc
-->
<!-- DOCS-SITE-LINK:START automatically generated -->
### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/aws/cli-reference/config)
<!-- DOCS-SITE-LINK:END -->
# AWS - Config
The purpose of `serverless config` is to allow to enable or disable automatic update mechanism of the Framework. Additionally, it supports `config credentials` subcommand. For more details about them, please refer to their corresponding documentation pages. Auto update mechanism is supported for global installations across all operating systems with the exception of standalone binary installation on Windows.
## Options
- `--autoupdate` Turn on auto update mechanism
- `--no-autoupdate` Turn off auto update mechanism
## Provided lifecycle events
- `config:config`
## Examples
### Turn on auto update mechanism
```bash
serverless config --autoupdate
```
### Turn off auto update mechanism
```bash
serverless config --no-autoupdate
```