Commit b8ee65fa by Will Daly

Merge pull request #2116 from edx/will/credit-provider-secret-keys

Add CREDIT_PROVIDER_SECRET_KEYS configuration to edxapp role
parents 3a705906 8316c46a
...@@ -496,6 +496,13 @@ EDXAPP_EDXNOTES_INTERNAL_API: http://localhost:18120/api/v1 ...@@ -496,6 +496,13 @@ EDXAPP_EDXNOTES_INTERNAL_API: http://localhost:18120/api/v1
EDXAPP_XBLOCK_SETTINGS: {} EDXAPP_XBLOCK_SETTINGS: {}
# Secret keys shared with credit providers.
# Used to digitally sign credit requests (us --> provider)
# and validate responses (provider --> us).
# Each key in the dictionary is a credit provider ID, and
# the value is the 32-character key.
EDXAPP_CREDIT_PROVIDER_SECRET_KEYS: {}
#-------- Everything below this line is internal to the role ------------ #-------- Everything below this line is internal to the role ------------
#Use YAML references (& and *) and hash merge <<: to factor out shared settings #Use YAML references (& and *) and hash merge <<: to factor out shared settings
...@@ -653,6 +660,7 @@ edxapp_generic_auth_config: &edxapp_generic_auth ...@@ -653,6 +660,7 @@ edxapp_generic_auth_config: &edxapp_generic_auth
THIRD_PARTY_AUTH: "{{ EDXAPP_THIRD_PARTY_AUTH }}" THIRD_PARTY_AUTH: "{{ EDXAPP_THIRD_PARTY_AUTH }}"
AWS_STORAGE_BUCKET_NAME: "{{ EDXAPP_AWS_STORAGE_BUCKET_NAME }}" AWS_STORAGE_BUCKET_NAME: "{{ EDXAPP_AWS_STORAGE_BUCKET_NAME }}"
DJFS: "{{ EDXAPP_DJFS }}" DJFS: "{{ EDXAPP_DJFS }}"
CREDIT_PROVIDER_SECRET_KEYS: "{{ EDXAPP_CREDIT_PROVIDER_SECRET_KEYS }}"
generic_cache_config: &default_generic_cache generic_cache_config: &default_generic_cache
BACKEND: 'django.core.cache.backends.memcached.MemcachedCache' BACKEND: 'django.core.cache.backends.memcached.MemcachedCache'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment