forked from department-of-veterans-affairs/vets-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.yml
1770 lines (1655 loc) · 52.4 KB
/
settings.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
hostname: 127.0.0.1:3000 # possible fallback for unsafe request.host
vsp_environment: localhost
virtual_hosts: ["127.0.0.1", "localhost"] # Safe host names
# For CORS requests; separate multiple origins with a comma
web_origin: http://localhost:3000,http://localhost:3001,http://127.0.0.1:3000,http://127.0.0.1:3001,null
web_origin_regex: \Ahttps?:\/\/www\.va\.gov\z
logingov:
client_id: https://sqa.eauth.va.gov/isam/sps/saml20sp/saml20
redirect_uri: http://localhost:3000/v0/sign_in/callback
logout_redirect_uri: http://localhost:3000/v0/sign_in/logingov_logout_proxy
client_cert_path: spec/fixtures/sign_in/oauth.crt
client_key_path: spec/fixtures/sign_in/oauth.key
oauth_url: https://idp.int.identitysandbox.gov
oauth_public_key: spec/fixtures/logingov/logingov_oauth_pub.pem
inherited_proofing_redirect_uri: http://localhost:3000/inherited_proofing/callback
idme:
client_id: ef7f1237ed3c396e4b4a2b04b608a7b1
client_secret: ae657fd2b253d17be7b48ecdb39d7b34
redirect_uri: http://localhost:3000/v0/sign_in/callback
client_cert_path: spec/fixtures/sign_in/oauth.crt
client_key_path: spec/fixtures/sign_in/oauth.key
oauth_url: https://api.idmelabs.com
oauth_public_key: spec/fixtures/idme/idme_oauth_pub.pem
# Settings for new SAML authentication with SSOe
saml_ssoe:
idp_metadata_file: config/ssoe_idp_int_metadata_isam.xml
cert_path: ~
cert_new_path: ~
key_path: ~
issuer: https://ssoe-sp-localhost.va.gov
callback_url: http://localhost:3000/v1/sessions/callback
logout_url: https://int.eauth.va.gov/slo/globallogout?appKey=https%253A%252F%252Fssoe-sp-dev.va.gov
request_signing: false
relay: ~
response_signing: false
response_encryption: false
identity_slack_webhook: ~
idp_sso_service_binding: "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST"
ssoe_eauth_cookie:
name: vagov_saml_request_localhost
domain: localhost
secure: false
session_cookie:
secure: false
sign_in:
jwt_encode_key: "spec/fixtures/sign_in/privatekey.pem"
cookies_secure: false
info_cookie_domain: localhost
auto_uplevel: true
mock_auth_url: http://localhost:3000/mocked_authentication/profiles
mock_redirect_uri: http://localhost:3000/v0/sign_in/callback
mockdata_sync_api_key: ~
lockbox:
master_key: "0d78eaf0e90d4e7b8910c9112e16e66d8b00ec4054a89aa426e32712a13371e9"
previous_master_key: "a798f118b400a1a7552597cc94f44c577919c76b3d26c1eed8ae0703f4240216"
binaries:
# you can specify a full path in settings.local.yml if necessary
pdfinfo: pdfinfo
pdftk: pdftk
clamdscan: /usr/bin/clamdscan
db_encryption_key: f01ff8ebd1a2b053ad697ae1f0d86adb
database_url: postgis:///vets-api
test_database_url: postgis:///vets-api-test
relative_url_root: /
# This is a fake secret key base... not used in any envs
secret_key_base: c1a13acb916e6ebf1d2a93a3924586520508b609e80e048364902cd36ab602c9ec6ddcb47ac66e7903dbc77ae876df5564658a4f786b50497440b0c7dc029361
old_secret_key_base: 8af0fe1e378586520e4324694897eb269bd0fffa1c5be6cc3b4ffb9dbde095d0bef5c7fdab73cd05685d8fe1dd589287d78b38e4de7116fbe14461e414072677
dmc:
client_id: "0be3d60e3983438199f192b6e723a6f0"
client_secret: "secret"
mock_debts: false
mock_fsr: false
url: https://internal-dsva-vagov-dev-fwdproxy-1893365470.us-gov-west-1.elb.amazonaws.com:4465/api/v1/digital-services/
debts_endpoint: debt-letter/get
fsr_payment_window: 30
mcp:
vbs_client_key: abcd1234abcd1234abcd1234abcd1234abcd1234
vbs:
url: https://fake_url.com:9000
host: fake_url.com:9000
base_path: /base/path
service_name: VBS
mock: false
mock_vista: false
api_key: abcd1234abcd1234abcd1234abcd1234abcd1234
vbs_v2:
url: https://fake_url.com:9000
host: fake_url.com:9000
base_path: /base/path
service_name: VBS
mock: false
mock_vista: false
api_key: abcd1234abcd1234abcd1234abcd1234abcd1234
notifications:
job_interval: 90
batch_size: 100
fsr:
prefill: true
review_instance_slug: ~
sidekiq_admin_panel: false
salesforce-gibft:
url: "https://va--rdtcddev.cs33.my.salesforce.com/"
salesforce-carma:
mock: true
url: "https://fake-carma.salesforce.com"
consumer_key: 12345ABC.QQ_1234BBfake
signing_key_path: "spec/fixtures/carma/privatekey.pem" # A dummy private key used for test suite
username: [email protected]
salesforce:
env: dev
form_10_10cg:
carma:
mulesoft:
mock: false
host: ~
client_id: ~
client_secret: ~
timeout: 30
async_timeout: 600
poa:
s3:
aws_access_key_id: my-aws-key-id
aws_secret_access_key: my-aws-access-key
bucket: my-bucket
enabled: true
region: us-gov-west-1
vbs:
url: https://vbs.example.com/api/v1
# Settings for Education Benefits
edu:
prefill: true
sftp:
host: ~
pass: ~
user: ~
port: ~
relative_307_path: ~
relative_351_path: ~
slack:
webhook_url: https://example.com
spool_error:
emails:
- VAVBAHIN/[email protected]
staging_emails:
staging_spool_contents:
emails:
dependents:
prefill: true
pension_burial:
prefill: true
sftp:
relative_path: "../VETSGOV_PENSION"
central_mail:
upload:
enabled: true
host: "test2.domaonline.com/EmmsAPI"
token: "<CENTRAL_MAIL_TOKEN>"
# Settings for BIP Services
bip:
claims:
url: "https://claims-uat.dev8.bip.va.gov"
mock: false
# Settings for VAProfile
vet360:
url: "https://int.vet360.va.gov"
contact_information:
cache_enabled: false
enabled: true
timeout: 30
mock: false
demographics:
cache_enabled: false
enabled: true
timeout: 30
mock: false
military_personnel:
cache_enabled: false
enabled: true
timeout: 30
mock: false
address_validation:
hostname: "sandbox-api.va.gov"
api_key: "<AV_KEY>"
# Settings for IHub
ihub:
url: "https://qacrmdac.np.crm.vrm.vba.va.gov"
appointments:
timeout: 30
mock: true
in_production: false
# Settings for Medical Devices Ordering Tool
mdot:
prefill: true
url: https://internal-dsva-vagov-staging-fwdproxy-1821450725.us-gov-west-1.elb.amazonaws.com:4466
api_key: abcd1234abcd1234abcd1234abcd1234abcd1234
mock: false
enabled: false
# Settings for Decision Reviews
decision_review:
benchmark_performance: true
prefill: true
url: https://sandbox-api.va.gov/services/appeals/v1/decision_reviews
api_key: abcd1234abcd1234abcd1234abcd1234abcd1234
mock: false
pdf_validation:
enabled: true
url: https://sandbox-api.va.gov/services/vba_documents/v1
s3:
aws_access_key_id: ~
aws_secret_access_key: ~
region: region
bucket: bucket
v1:
url: https://sandbox-api.va.gov/services/appeals/v2/decision_reviews
# Settings for modules/dhp_connected_devices
dhp:
mock: false
fitbit:
client_id: ""
client_secret: ""
redirect_uri: "http://localhost:3000/dhp_connected_devices/fitbit-callback"
scope: "heartrate activity nutrition sleep"
code_challenge: ""
code_verifier: ""
s3:
aws_access_key_id: ""
aws_secret_access_key: ""
bucket: ""
region: "us-gov-west-1"
# Settings for modules/appeals_api
modules_appeals_api:
token_validation:
appeals_status:
api_key: ""
contestable_issues:
api_key: ""
higher_level_reviews:
api_key: ""
legacy_appeals:
api_key: ""
notice_of_disagreements:
api_key: ""
supplemental_claims:
api_key: ""
# The token generation values below are only used for development rake tasks.
token_generation:
ccg:
config_uri: "https://dev-api.va.gov/oauth2/appeals/system/v1/.well-known/openid-configuration"
# Get a client ID by submitting your public jwk here - make sure to check the boxes for the APIs under
# "Client Credentials Grant APIs": https://developer.va.gov/onboarding/request-sandbox-access
client_id: ""
# Absolute path to the private key file matching the jwk:
private_key_path: ""
auth:
config_uri: "https://dev-api.va.gov/oauth2/appeals/v1/.well-known/openid-configuration"
# Get a client ID/secret by submitting this form - make sure to check the boxes for the APIs under
# "Authorization Code Flow APIs": https://developer.va.gov/onboarding/request-sandbox-access
client_id: ""
client_secret: ""
redirect_uri: ""
user_email: ""
user_password: ""
slack:
api_key: ""
appeals_channel_id: ""
documentation:
path_enabled_flag: false
wip_docs:
# List of flags to indicate parts of documentation that are still WIP and not ready for production.
# See the rswag:appeals_api:dev rake task, spec_helper, and DocHelpers#wip_doc_enabled? for usage info to opt-in.
# NOTE: Do not remove this key even if it's empty.
- sc_v2_potential_pact_act
legacy_appeals_enabled: true
reports:
daily_decision_review:
enabled: false
weekly_decision_review:
enabled: false
daily_error:
enabled: false
weekly_error:
# See features.yml for enablement
recipients:
schema_dir: config/schemas
evidence_submissions:
location:
prefix: http://some.fakesite.com/path
replacement: http://another.fakesite.com/rewrittenpath
s3:
uploads_enabled: false
aws_access_key_id: "aws_access_key_id"
aws_secret_access_key: "aws_secret_access_key"
region: "region"
bucket: "bucket"
status_simulation_enabled: false
onsite_notifications:
public_key: ~
template_ids:
- "f9947b27-df3b-4b09-875c-7f76594d766d" # staging - debt notification
- "7efc2b8b-e59a-4571-a2ff-0fd70253e973" # production - debt notification
vre_counseling:
prefill: true
vre_readiness:
prefill: true
coe:
prefill: true
adapted_housing:
prefill: true
# Settings for Expiry Scanner
expiry_scanner:
slack:
channel_id: ~
directories: ~
argocd:
slack:
api_key: ~
# Settings for EVSS
evss:
prefill: true
url: https://csraciapp6.evss.srarad.com
service_name: "wss-form526-services-web"
alternate_service_name: "wss-form526-services-web-v2"
cert_path: ~
key_path: ~
root_cert_path: ~
versions:
claims: 3.6
common: 11.6
documents: 3.7
s3:
uploads_enabled: false
aws_access_key_id: EVSS_S3_AWS_ACCESS_KEY_ID_XYZ
aws_secret_access_key: EVSS_S3_AWS_SECRET_ACCESS_KEY_XYZ
bucket: evss_s3_bucket
region: evss_s3_region
disability_compensation_form:
timeout: 55 # ~1 minute
submit_timeout: 355 # ~6 minutes
dvp:
url: <%= ENV['EVSS_DVP_URL'] %>
letters:
url: https://csraciapp6.evss.srarad.com
timeout: 55
ppiu:
timeout: 30
pciu:
timeout: 30
pciu_address:
timeout: 30
mock_claims: false
mock_common_service: true
mock_disabilities_form: true
mock_gi_bill_status: false
mock_itf: true
mock_letters: false
mock_pciu: true
mock_pciu_address: false
mock_ppiu: true
mock_reference: true
mock_vso_search: false
aws:
url: http://fake.evss-reference-data-service.dev/v1
cert_path: ~
key_path: ~
root_ca: ~
reference_data_service:
enabled: false
international_postal_codes: "config/evss/international_postal_codes.json"
# Settings for GI Bill Data Service
gids:
url: https://dev.va.gov/gids
open_timeout: 1
read_timeout: 1
mvi_hca:
url: http://example.com
# Settings for Healthcare Application
# This CA chain is nonsense but allows local development to work with pre-prod environment.
hca:
prefill: true
endpoint: https://test-foo.vets.gov
timeout: 30
ee:
endpoint: "http://example.com"
user: "HCASvcUsr"
pass: "password"
# Settings for the facility locator
locators:
vha: https://gis.va.gov/server/rest/services/VA/FacilitySitePoint_VHA/FeatureServer/0/
nca: https://services3.arcgis.com/aqgBd3l68G8hEFFE/ArcGIS/rest/services/NCA_Facilities/FeatureServer/0
vba: https://services3.arcgis.com/aqgBd3l68G8hEFFE/ArcGIS/rest/services/VBA_Facilities/FeatureServer/0
vc: https://services3.arcgis.com/aqgBd3l68G8hEFFE/ArcGIS/rest/services/VHA_VetCenters/FeatureServer/0
vha_access_satisfaction: https://www.accesstopwt.va.gov/
vha_access_waittime: https://www.accesstocare.va.gov/
base_path: https://services3.arcgis.com/aqgBd3l68G8hEFFE/ArcGIS/rest/services/
gis_base_path: https://gis.va.gov/server/rest/services/VA
drive_time_band_base_path: https://vhanflwebgistst.v08.med.va.gov
providers_enabled: false
mock_gis: false
ppms:
url: https://some.fakesite.com
apim_url: https://some.other.fakesite.com
open_timeout: 15
read_timeout: 55
api_keys:
fakekey: fakevalue
# Settings for MyHealthEVet
mhv:
# include ranges first, then individual exceptions to the ranges last.
facility_range: [[358, 718], [720, 740], [742, 758]]
facility_specific: [["741MM"]] # 741 is excluded, but 741MM is included
rx:
host: https://mhv-api.example.com
app_token: fake-app-token
collection_caching_enabled: false
mock: true
sm:
host: https://mhv-api.example.com
app_token: fake-app-token
mock: true
bb:
mock: true
collection_caching_enabled: true
account:
mock: false
inherited_proofing:
base_path: https://mhv-api.example.com
app_token: fake-app-token
mock: true
# Settings for alternate MHV integration for mobile app
mhv_mobile:
sm:
app_token: fake-app-token
# Settings for Master Veteran Index
mvi:
url: http://ps-dev.commserv.healthevet.va.gov:8110/psim_webservice/IdMWebService
open_timeout: 15
timeout: 30
mock: false
processing_code: T
client_cert_path: /fake/client/cert/path
client_key_path: /fake/client/key/path
pii_logging: false
# Settings for eMIS
# The certs used here can be obtained from the DevOps team. A different set is required for
# each environment when connecting to the service.
emis:
mock: true
host: https://vaausvrsapp81.aac.va.gov
veteran_status_url: /VIERSService/eMIS/v1/VeteranStatusService
payment_url:
v1: /VIERSService/eMIS/v1/PaymentService
v2: /VIERSService/eMIS/v2/PaymentService
military_information_url:
v1: /VIERSService/eMIS/v1/MilitaryInformationService
v2: /VIERSService/eMIS/v2/MilitaryInformationService
client_cert_path: /fake/client/cert/path
client_key_path: /fake/client/key/path
soap_namespaces:
xmlns:xsd: http://www.w3.org/2001/XMLSchema
xmlns:xsi: http://www.w3.org/2001/XMLSchema-instance
xmlns:soap: http://www.w3.org/2003/05/soap-envelope
xmlns:v1: http://viers.va.gov/cdi/CDI/commonService/v1
xmlns:v12: http://viers.va.gov/cdi/eMIS/RequestResponse/v1
xmlns:v13: http://viers.va.gov/cdi/eMIS/commonService/v1
military_information:
v1:
soap_namespaces:
xmlns:v11: http://viers.va.gov/cdi/eMIS/RequestResponse/MilitaryInfo/v1
v2:
soap_namespaces:
xmlns:v1: http://viers.va.gov/cdi/CDI/commonService/v2
xmlns:v12: http://viers.va.gov/cdi/eMIS/RequestResponse/v2
xmlns:v13: http://viers.va.gov/cdi/eMIS/commonService/v2
xmlns:v11: http://viers.va.gov/cdi/eMIS/RequestResponse/MilitaryInfo/v2
payment:
v1:
soap_namespaces:
xmlns:v11: http://viers.va.gov/cdi/eMIS/RequestResponse/Payment/v1
v2:
soap_namespaces:
xmlns:v1: http://viers.va.gov/cdi/CDI/commonService/v2
xmlns:v12: http://viers.va.gov/cdi/eMIS/RequestResponse/v2
xmlns:v13: http://viers.va.gov/cdi/eMIS/commonService/v2
xmlns:v11: http://viers.va.gov/cdi/eMIS/RequestResponse/Payment/v2
veteran_status:
soap_namespaces:
xmlns:v11: http://viers.va.gov/cdi/eMIS/RequestResponse/VetStatus/v1
caseflow:
mock: true
app_token: PUBLICDEMO123
host: https://dsva-appeals-certification-dev-1895622301.us-gov-west-1.elb.amazonaws.com
timeout: 119
# The forwardproxy timeout is 2m so I want something slightly less than that so we don't get the forwardproxy's html
# response when we're expecting JSON. Ideally, caseflow would respond quicker but they're still giving good responses
# in over a minute.
vic:
url: https://some.fakesite.com
signing_key_path: /fake/signing/key/path
# Settings for (preneeds) burials.
preneeds:
host: http://some.fakesite.com
wsdl: "config/preneeds/wsdl/preneeds.wsdl"
webhooks:
require_https: true
# Settings for VBA Document upload service module
vba_documents:
v2_upload_endpoint_enabled: false
v2_enabled: false
documentation:
path_enabled_flag: false
report_enabled: false
monthly_report: false
location:
prefix: http://some.fakesite.com/path
replacement: http://another.fakesite.com/rewrittenpath
s3:
enabled: false
aws_access_key_id: "aws_access_key_id"
aws_secret_access_key: "aws_secret_access_key"
region: "region"
bucket: "bucket"
sns:
topic_arns:
- vetsgov-arn
- vagov-arn
slack:
enabled: false
api_key: ""
channel_id: ""
default_alert_email: ""
in_flight_notification_hung_time_in_days: 14
renotification_in_minutes: 240
update_stalled_notification_in_minutes: 180
webhooks:
registration_next_run_in_minutes: 15
registration_max_retries: 3
#Settings for Claims Api Module
claims_api:
pdf_generator_526:
service_name: form-526ez-pdf-generator
report_enabled: false
audit_enabled: false
s3:
enabled: false
aws_access_key_id: ~
aws_secret_access_key: ~
region: ~
bucket: ~
disability_claims_mock_override: false
schema_dir: config/schemas
slack:
webhook_url: https://example.com
claims_error_reporting:
environment_name: ~
v2_docs:
enabled: false
token_validation:
api_key:
benefits_documents:
auth:
ccg:
client_id: ~
rsa_key: ~
aud_claim_url: ~
host: https://sandbox-api.va.gov
use_mocks: false
redis:
host: localhost
port: 6379
app_data:
url: redis://localhost:6379
sidekiq:
url: redis://localhost:6379
rails_cache:
url: redis://localhost:6379
# Settings for GovDelivery (email delivery)
govdelivery:
staging_service: true
server: stage-tms.govdelivery.com
token: ~
# Settings for Education Benefits report uploading
reports:
send_email: true
aws:
access_key_id: ~
bucket: ~
region: ~
secret_access_key: ~
spool10203_submission:
emails:
staging_emails:
spool_submission:
emails:
staging_emails:
year_to_date_report:
emails:
staging_emails:
oidc:
auth_server_metadata_url: ~
issuer: ~
issuer_prefix: ~
audience: ~
isolated_audience:
default: ~
veteran_verification: ~
claims: ~
charon:
enabled: ~
endpoint: ~
audience: ~
base_api_url: https://example.com
base_api_token: ~
base_api_profile_key_icn: false
smart_launch_url: ~
issued_url: ~
issuers:
- prefix: "https://example.com/"
metadata: "/.well-known/openid-configuration"
proxy: "https://example.com/"
opaque_clients:
- route: ~
client_id: ~
sentry:
dsn: ~
iam_ssoe:
client_cert_path: ~
client_key_path: ~
client_id: "Mobile_App_API_Server_LOWERS"
# oauth (rest) and sts (soap) services are on different hosts
oauth_url: "https://int.fed.eauth.va.gov:444"
sts_url: "https://preprod.services.eauth.va.gov:9301"
timeout: 20
statsd:
host: ~
port: ~
shrine:
claims:
type: local
path: claims
# Settings for maintenance window API
# Services should be a map from logical service name to PagerDuty service id
maintenance:
pagerduty_api_url: https://api.pagerduty.com
pagerduty_api_token: FAKE
service_query_prefix: "External: "
services:
carma: P6XLE0T
appeals: P9S4RFU
arcgis: P45YBFA
coe: PXXXXXX
dslogon: P9DJJAV
emis: P0HNT0I
es: PH7OPR4
evss: PZKWB6Y
global: PLPSIB0
idme: PVWB4R8
logingov: P2SHMM9
mvi: PCIPVGJ
mhv: PP2ZZ2V
search: PRG8HJI
tims: PUL8OQ4
vet360: PHVOGQ1
vetext_vaccine: P9PG8HG
vic: P7LW3MS
hcq: PWGA814
aws:
access_key_id: ~
bucket: ~
region: ~
secret_access_key: ~
# Note: in addition to enabling / disabling betamocks here, you _must_ also
# change the 'mock' bool for each service you want to mock in this settings file
betamocks:
enabled: true
recording: false
cache_dir: ~
services_config: config/betamocks/services_config.yml
# Settings for search
search:
access_key: SEARCH_GOV_ACCESS_KEY
affiliate: va
mock_search: false
url: https://search.usa.gov/api/v2
# Settings for search-typeahead
search_typeahead:
api_key: API_GOV_ACCESS_KEY
name: va
url: https://api.gsa.gov/technology/searchgov/v1
# Settings for search-click-tracking
search_click_tracking:
access_key: SEARCH_GOV_ACCESS_KEY
affiliate: va
mock: false
url: https://api.gsa.gov/technology/searchgov/v2
flipper:
mute_logs: false
admin_user_emails:
- [email protected] # Virtual Agent
- [email protected] # Alexander Garcia (Clarity), Identity, Frontend Engineer
- [email protected] # Afia Caruso (Oddball), Identity, Frontend Engineer
- [email protected] # Alex Wilson - Oddball
- [email protected] # Anu Das Full Stack Engineer, LGA
- [email protected] # Brian Seek (Civic Actions), FE Engineer Health Care Experience/Check-In
- [email protected] # Designer on GCIO
- [email protected] # Backend Engineer, Benefits & Appeals
- [email protected] # Corey Parker (GCIO), Product Manager Health Care Experience/Check-In
- [email protected] # Dan Goodwin (Civic Actions), FE Engineer Health Care Experience/Check-In
- [email protected] # Drew Fisher (Ad Hoc), Team Lead Decision Reviews
- [email protected] # Eugene Lynch (Coforma), Benefits Team 1, FE and BE Engineer
- [email protected] # Thoughtworks, ex VANotify, supports DHP, CDSP, Virtual Agent
- [email protected] # Garrett Rabian - Engineer - VA Forms Team
- [email protected] # Gaurav Gupta (Kindsys), BE Engineer Health Care Experience/Check-In
- [email protected] # Holden (Emmerson) Hinkle (Oddball), Rails Engineer
- [email protected] # Ian Hundere (Oddball), Identity, DevOps Engineer
- [email protected] # Virtual Agent
- [email protected] # Jim Adams designer on GCIO
- [email protected] # Virtual Agent
- [email protected] # Joe Niquette (Oddball), Identity, Sr Security Engineer
- [email protected] # John Bramley (AdHoc), Identity, Backend Engineer
- [email protected] # Julie Adair (Agile6), Product Manager Health Care Experience/Check-In
- [email protected] # Jason Wolf Product Manager for GCIO
- [email protected] # Virtual Agent
- [email protected] # Kevin Musiorski (GCIO), Engineer
- [email protected] # email tied to production id.me account
- [email protected] # Kristen Brown (Ad Hoc), Engineer, Benefits & Appeals
- [email protected] # Kanchana Suriyamoorthy (Kindsys), BE Engineer Health Care Experience/Check-In
- [email protected] # Lucian Snare - Ad Hoc LLC
- [email protected] # MHV Secure Messaging Team
- [email protected] # DHP team tech lead
- [email protected] # Nathan Wright (Oddball) - Eng lead - VANotify strike team
- [email protected] # AFS - My Education Benefits
- [email protected] # Nick Sprinkle - Engineer - VA Forms Team
- [email protected] # MHV Secure Messaging Team
- [email protected] # Rachael Bontrager - Ad Hoc - Mobile QA
- [email protected] # Robin Garrison - AdHoc
- [email protected] # Ryan Leahy - Adhoc
- [email protected] # Sarah Knopp (Agile 6), Scrum Master
- [email protected] # Taylor Mitchell - GCIO