From 3862bddbb3c7a383d05d51e87061e40eaf958010 Mon Sep 17 00:00:00 2001 From: Sanyam Khurana Date: Tue, 4 Jun 2024 06:35:01 +0530 Subject: [PATCH] fix(config-vars): Add note about auto setting REGION --- src/how-to/apps/config-variables.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/how-to/apps/config-variables.md b/src/how-to/apps/config-variables.md index 40fee81..2c23c36 100644 --- a/src/how-to/apps/config-variables.md +++ b/src/how-to/apps/config-variables.md @@ -13,6 +13,9 @@ Config variables are used to store secrets and pass environment-specific informa This command will store the value as an encrypted string in the [AWS Parameter Store](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html). It will also gracefully restart your application to add the environment variable immediately. +!!! note + The `APPPACK_APPNAME` configuration is already set for each app. If neither `AWS_REGION` nor `AWS_DEFAULT_REGION` are configured, they will be automatically set to the app's deployed region. If either one is set, the other will not be set automatically. + ## Modifying a config variable Use the same process as above for setting a variable.