Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-29 06:08:11 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-29 06:08:11 +0300
commitc70ed55242619ebd139c029a1f3c531d6b81a327 (patch)
tree9cf8d40b6ba2a6943a8b56948998abf5f894467d /doc/ci/cloud_deployment
parentd123b8e0d64fa8b6bc63f1098b45f03b193353fb (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/ci/cloud_deployment')
-rw-r--r--doc/ci/cloud_deployment/index.md21
1 files changed, 15 insertions, 6 deletions
diff --git a/doc/ci/cloud_deployment/index.md b/doc/ci/cloud_deployment/index.md
index a1e722b131e..967f9033f28 100644
--- a/doc/ci/cloud_deployment/index.md
+++ b/doc/ci/cloud_deployment/index.md
@@ -35,12 +35,21 @@ Some credentials are required to be able to run `aws` commands:
NOTE: **Note:**
A new **Access key ID** and **Secret access key** pair will be generated. Please take a note of them right away.
-1. In your GitLab project, go to **Settings > CI / CD**. Set the Access key ID and Secret access key as [environment variables](../variables/README.md#gitlab-cicd-environment-variables), using the following variable names:
-
- | Env. variable name | Value |
- |:------------------------|:-------------------------|
- | `AWS_ACCESS_KEY_ID` | Your "Access key ID" |
- | `AWS_SECRET_ACCESS_KEY` | Your "Secret access key" |
+1. In your GitLab project, go to **Settings > CI / CD**. Set the following as
+ [environment variables](../variables/README.md#gitlab-cicd-environment-variables)
+ (see table below):
+
+ - Access key ID.
+ - Secret access key.
+ - Region code. You can check the [list of AWS regional endpoints](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints).
+ You might want to check if the AWS service you intend to use is
+ [available in the chosen region](https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services/).
+
+ | Env. variable name | Value |
+ |:------------------------|:-----------------------|
+ | `AWS_ACCESS_KEY_ID` | Your Access key ID |
+ | `AWS_SECRET_ACCESS_KEY` | Your Secret access key |
+ | `AWS_DEFAULT_REGION` | Your region code |
1. You can now use `aws` commands in the `.gitlab-ci.yml` file of this project: