-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathredis.yml
85 lines (83 loc) · 2.15 KB
/
redis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
development: &defaults
redis:
host: <%= Settings.redis.host %>
port: <%= Settings.redis.port %>
# DO NOT CHANGE BELOW TTL (We have agreement with MHV on this for SSO)
session_store:
namespace: vets-api-session
each_ttl: 1800
user_b_store:
namespace: users_b
each_ttl: 1800
user_identity_store:
namespace: user_identities
each_ttl: 1800
# DO NOT CHANGE ABOVE TTL
openid_user_identity_store:
namespace: openid_user_identities
each_ttl: 1800
openid_user_store:
namespace: openid_users
each_ttl: 1800
rx_store:
namespace: rx-service
each_ttl: 1200
gi_bill_feedback:
namespace: gi_bill_feedback
each_ttl: 86400
sm_store:
namespace: sm-service
each_ttl: 1200
mvi_profile_response:
namespace: mvi-profile-response
each_ttl: 86400
failure_ttl: 1800
emis_response:
namespace: emis-response
each_ttl: 86400
okta_response:
namespace: okta-response
each_ttl: 3600
okta_response_app:
namespace: okta-response
each_ttl: 86400
saml_store:
namespace: single-logout-request
each_ttl: 43200
facility_access_satisfaction:
namespace: facility-access-satisfaction
each_ttl: 2592000
facility_access_wait_time:
namespace: facility-access-wait-time
each_ttl: 2592000
pciu_address_dependencies:
namespace: pciu-address-dependencies
each_ttl: 604800
vet360_contact_info_response:
namespace: vet360-contact-info-response
each_ttl: 86400 # 1 day
vet360_reference_data_response:
namespace: vet360-reference-data-response
each_ttl: 86400
intent_to_file_response:
namespace: intent-to-file-response
each_ttl: 86400
mhv_account_ineligible:
namespace: mhv_account_ineligible
each_ttl: 1296000
evss_claims_store:
namespace: evss
each_ttl: 3600
user_account_details:
namespace: user-account-details
each_ttl: 1296000 # 15 days
evss_dependents_retrieve_response:
namespace: evss-dependents-retrieve-response
each_ttl: 86400
external_service_statuses_response:
namespace: external-service-statuses-response
each_ttl: 60 # 1 minute
test:
<<: *defaults
production:
<<: *defaults