diff --git a/docs/README.md b/docs/README.md
index 0c2a407a4..b92131b9a 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -47,7 +47,7 @@ The Serverless Framework allows you to deploy auto-scaling, pay-per-execution, e
- - Setup
+ - Config
- Create
- Install
- Deploy
diff --git a/docs/providers/aws/cli-reference/config.md b/docs/providers/aws/cli-reference/config.md
new file mode 100644
index 000000000..606167656
--- /dev/null
+++ b/docs/providers/aws/cli-reference/config.md
@@ -0,0 +1,50 @@
+
+
+
+### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/aws/cli-reference/config)
+
+
+# Config
+
+This plugin helps you to configure Serverless.
+
+## Configure credentials
+
+```bash
+serverless config credentials --provider provider --key key --secret secret
+```
+
+### Options
+
+- `--provider` or `-p` The provider (in this case `aws`). **Required**.
+- `--key` or `-k` The `aws_access_key_id`. **Required**.
+- `--secret` or `-s` The `aws_secret_access_key`. **Required**.
+- `--profile` or `-n` The name of the profile which should be created.
+
+### Provided lifecycle events
+
+- `config:credentials:credentials`
+
+### Examples
+
+#### Configure the `default` profile
+
+```bash
+serverless config credentials --provider aws --key 1234 --secret 5678
+```
+
+This example will configure the `default` profile with the `aws_access_key_id` of `1234` and the `aws_secret_access_key` of `5678`.
+
+#### Configure a custom profile
+
+```bash
+serverless config credentials --provider aws --key 1234 --secret 5678 --profile custom-profile
+```
+
+This example create and configure a `custom-profile` profile with the `aws_access_key_id` of `1234` and the `aws_secret_access_key` of `5678`.
diff --git a/docs/providers/aws/cli-reference/setup.md b/docs/providers/aws/cli-reference/setup.md
deleted file mode 100644
index fcf5e01be..000000000
--- a/docs/providers/aws/cli-reference/setup.md
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-### [Read this on the main serverless docs site](https://www.serverless.com/framework/docs/providers/aws/cli-reference/setup)
-
-
-# Setup
-
-This plugin helps you with the setup of your AWS profiles.
-
-```bash
-serverless setup --provider provider --key key --secret secret
-```
-
-## Options
-
-- `--provider` or `-p` The provider (in this case `aws`). **Required**.
-- `--key` or `-k` The `aws_access_key_id`. **Required**.
-- `--secret` or `-s` The `aws_secret_access_key`. **Required**.
-- `--profile` or `-n` The name of the profile which should be created.
-
-## Provided lifecycle events
-
-- `setup:setup`
-
-## Examples
-
-### Setup the `default` profile
-
-```bash
-serverless setup --provider aws --key 1234 --secret 5678
-```
-
-This example will setup the `default` profile with the `aws_access_key_id` of `1234` and the `aws_secret_access_key` of `5678`.
-
-### Setup a custom profile
-
-```bash
-serverless setup --provider aws --key 1234 --secret 5678 --profile custom-profile
-```
-
-This example create and setup a `custom-profile` profile with the `aws_access_key_id` of `1234` and the `aws_secret_access_key` of `5678`.
diff --git a/docs/providers/aws/guide/credentials.md b/docs/providers/aws/guide/credentials.md
index 18f40cd4d..2cfcbb2a9 100644
--- a/docs/providers/aws/guide/credentials.md
+++ b/docs/providers/aws/guide/credentials.md
@@ -71,17 +71,17 @@ serverless deploy
For a more permanent solution you can also set up credentials through AWS profiles. Here are different methods you can use to do so.
-##### Setup with `serverless setup` command
+##### Setup with `serverless config credentials` command
-Serverless provides a convenient way to setup AWS profiles with the help of the `serverless setup` command.
+Serverless provides a convenient way to configure AWS profiles with the help of the `serverless config credentials` command.
-Here's an example how you can setup the `default` AWS profile:
+Here's an example how you can configure the `default` AWS profile:
```bash
-serverless setup --provider aws --key AKIAIOSFODNN7EXAMPLE --secret wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
+serverless config credentials --provider aws --key AKIAIOSFODNN7EXAMPLE --secret wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
```
-Take a look at the [`setup` CLI reference](../cli-reference/setup.md) for more information about profile setup.
+Take a look at the [`config` CLI reference](../cli-reference/config.md) for more information about credential configuration.
##### Setup with the `aws-cli`