From cec2c893be15a263336eae02bd6cc4f9b0f7354d Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Thu, 26 Jul 2012 14:25:49 -0400 Subject: [PATCH] Add AWS keys so that the CMS can send email --- cms/envs/aws.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cms/envs/aws.py b/cms/envs/aws.py index 79c90a6df9..f03e10c9b1 100644 --- a/cms/envs/aws.py +++ b/cms/envs/aws.py @@ -42,5 +42,7 @@ with open(ENV_ROOT / "repos.json") as repos_file: with open(ENV_ROOT / "cms.auth.json") as auth_file: AUTH_TOKENS = json.load(auth_file) +AWS_ACCESS_KEY_ID = AUTH_TOKENS["AWS_ACCESS_KEY_ID"] +AWS_SECRET_ACCESS_KEY = AUTH_TOKENS["AWS_SECRET_ACCESS_KEY"] DATABASES = AUTH_TOKENS['DATABASES'] MODULESTORE = AUTH_TOKENS['MODULESTORE']