File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
infrastructure/terraform/components/app Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,18 @@ resource "aws_amplify_app" "main" {
2828 ]
2929
3030 environment_variables = {
31- NOTIFY_GROUP = var.group
32- NOTIFY_ENVIRONMENT = var.environment
33- NOTIFY_DOMAIN_NAME = local.root_domain_name
3431 ACCOUNT_ID = var.aws_account_id
35- NEXT_PUBLIC_DISABLE_CONTENT = var.disable_content
3632 AMPLIFY_MONOREPO_APP_ROOT = " frontend"
37- NEXT_PUBLIC_ENABLE_LETTERS = var.enable_letters
3833 API_BASE_URL = module.backend_api.api_base_url
39- USER_POOL_ID = jsondecode (aws_ssm_parameter. cognito_config . value )[" USER_POOL_ID" ]
40- USER_POOL_CLIENT_ID = jsondecode (aws_ssm_parameter. cognito_config . value )[" USER_POOL_CLIENT_ID" ]
4134 CSRF_SECRET = aws_ssm_parameter.csrf_secret.value
42- NEXT_PUBLIC_TIME_TILL_LOGOUT_SECONDS = 900
35+ NEXT_PUBLIC_DISABLE_CONTENT = var.disable_content
36+ NEXT_PUBLIC_ENABLE_LETTERS = var.enable_letters
4337 NEXT_PUBLIC_PROMPT_SECONDS_BEFORE_LOGOUT = 120
38+ NEXT_PUBLIC_TIME_TILL_LOGOUT_SECONDS = 900
39+ NOTIFY_DOMAIN_NAME = local.root_domain_name
40+ NOTIFY_ENVIRONMENT = var.environment
41+ NOTIFY_GROUP = var.group
42+ USER_POOL_CLIENT_ID = jsondecode (aws_ssm_parameter. cognito_config . value )[" USER_POOL_CLIENT_ID" ]
43+ USER_POOL_ID = jsondecode (aws_ssm_parameter. cognito_config . value )[" USER_POOL_ID" ]
4444 }
4545}
You can’t perform that action at this time.
0 commit comments