diff --git a/docs/scos/dev/tutorials-and-howtos/howtos/howto-do-better-deployments.md b/docs/scos/dev/tutorials-and-howtos/howtos/howto-do-better-deployments.md index 4b740860cc7..678bcf32a97 100644 --- a/docs/scos/dev/tutorials-and-howtos/howtos/howto-do-better-deployments.md +++ b/docs/scos/dev/tutorials-and-howtos/howtos/howto-do-better-deployments.md @@ -58,10 +58,14 @@ For this, you need two things: * Your RDS instance URL. * Your DB credentials. -You can obtain all these things by logging in to the AWS console and searching for "Parameter Store". Ensure that you have selected the right AWS region before you search. To list all the Parameter Store entries for the DB, you can enter "DB" in the search. You are looking for the following parameters: -- `/codebuild/base_task_definition/SPRYKER_DB_HOST` -- `/codebuild/base_task_definition/SPRYKER_DB_ROOT_USERNAME` -- `/codebuild/base_task_definition/SPRYKER_DB_ROOT_PASSWORD` +To obtain all these things, follow these steps: +1. Log in to the AWS console and search for "Task Definitions". +2. To open the task definitions overview of Amazon Elastic Container Service, click the feature. +3. Select your backend gateway task (backgw) and then its latest revision (should be top of the list). +4. Switch to the **JSON** view and find the following parameters in the JSON document shown: +- `SPRYKER_DB_HOST` +- `SPRYKER_DB_ROOT_USERNAME` +- `SPRYKER_DB_PASSWORD` With this information, you can connect to the database from any SQL client and create a database dump which you can then import locally. After you have imported the data, don't forget to publish events so that all the data gets imported to Redis and Elastic Search as well. You can use the following command to achieve that. ```