-
Notifications
You must be signed in to change notification settings - Fork 62
/
settings.yml
1841 lines (1705 loc) · 50.8 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
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
map_services:
chatbot_client_id: 2bb9803acfc3
sign_up_service_client_id: c7d6e0fc9a39
check_in_client_id: bc75b71c7e67
appointments_client_id: 74b3145e1354555e
oauth_url: https://veteran.apps-staging.va.gov
client_cert_path: spec/fixtures/map/oauth.crt
client_key_path: spec/fixtures/map/oauth.key
sign_up_service_url: https://cerner.apps-staging.va.gov
sign_up_service_provisioning_api_key: abcd1234
secure_token_service:
mock: true
sign_up_service:
mock: true
# 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
logout_app_key: https://ssoe-sp-dev.va.gov
tou_decline_logout_app_key: https://dev-api.va.gov/agreements_declined
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'
jwt_old_encode_key: 'spec/fixtures/sign_in/privatekey_old.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: ~
vaweb_client_id: vaweb
vamobile_client_id: vamobile
arp_client_id: arp
sts_client:
base_url: http://localhost:3000
key_path: spec/fixtures/sign_in/sts_client.pem
web_origins:
- http://localhost:4000
terms_of_use:
current_version: v1
provisioner_cookie_domain: localhost
enabled_clients: vaweb, mhv, myvahealth
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
clamav:
mock: false
# host & port here are only used in development here:
# config/initializers/clamav.rb
host: 'clamav'
port: '3310'
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: 10
batch_size: 10
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: fake-user@va.gov.carmafake
salesforce:
env: dev
form_10_10cg:
carma:
mulesoft:
mock: false
host: ~
client_id: ~
client_secret: ~
timeout: 30
async_timeout: 600
auth:
mock: false
timeout: ~
token_url: ~
client_id: ~
client_secret: ~
poa:
s3:
aws_access_key_id: my-aws-key-id
aws_secret_access_key: my-aws-access-key
bucket: my-bucket
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:
- Joseph.Preisser@va.gov
- Shay.Norton-Leonard@va.gov
- PIERRE.BROWN@va.gov
- VAVBAHIN/TIMS@vba.va.gov
- EDUAPPMGMT.VBACO@VA.GOV
- vfep_support_team@va.gov
- eugenia.gina.ronat@accenturefederal.com
- morgan.whaley@accenturefederal.com
- m.c.shah@accenturefederal.com
- patrick.arthur@accenturefederal.com
- adam.freemer@accenturefederal.com
- dan.brooking@accenturefederal.com
- sebastian.cooper@accenturefederal.com
- david.rowley@accenturefederal.com
- nick.barthelemy@accenturefederal.com
staging_emails:
staging_spool_contents:
emails:
- noah.stern@va.gov
- gregg.puhala@va.gov
- kara.ciprich@va.gov
- napoleon.kernessant@govcio.com
- vishnhav.ashok@va.gov
- donna.saunders@va.gov
- ariana.adili@govcio.com
- marelby.hernandez@va.gov
- nawar.hussein@va.gov
- engin.akman@va.gov
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: true
military_personnel:
cache_enabled: false
enabled: true
timeout: 30
mock: false
veteran_status:
cache_enabled: true
enabled: true
timeout: 30
mock: false
address_validation:
url: "https://sandbox-api.va.gov"
hostname: "sandbox-api.va.gov"
api_key: "<AV_KEY>"
profile_information:
enabled: true
timeout: 30
use_mocks: false
# 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.
legacy_appeals_enabled: true
reports:
daily_decision_review:
enabled: false
weekly_decision_review:
enabled: false
daily_error:
enabled: false
weekly_error:
enabled: false
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
intent_to_file:
prefill: true
ivc_champva:
prefill: true
form_upload_flow:
prefill: true
# Settings for Expiry Scanner
expiry_scanner:
slack:
channel_id: ~
directories: ~
argocd:
slack:
api_key: ~
# Settings for Accredited Rep Management
acc_rep_management:
prefill: true
# 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: http://fake.dvp-docker-container
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: ~
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
lce:
use_mocks: false
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"
ppms:
url: https://some.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
medical_records:
host: fake-host
app_token: fake-app-token
x_auth_key: fake-x-auth-key
account_creation:
mock: true
host: https://apigw-intb.aws.myhealth.va.gov
access_key: some-access-key
sts:
service_account_id: c34b86f2130ff3cd4b1d309bc09d8740
issuer: http://localhost:3000
# 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
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 Ask VA Api Module
ask_va_api:
prefill: true
crm_api:
auth_url: https://login.microsoftonline.us
base_url: https://dev.integration.d365.va.gov
client_id: client_id
client_secret: secret
resource: resource
veis_api_path: eis/vagov.lob.ava/api
tenant_id: abcdefgh-1234-5678-12345-11e8b8ce491e
ocp_apim_subscription_key: subscription_key
service_name: VEIS-API
#Settings for Claims Api Module
claims_api:
pdf_generator_526:
url: ~
path: '/form-526ez-pdf-generator/v1/forms/'
content_type: 'application/vnd.api+json'
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
poa_v2:
disable_jobs: false
vanotify:
representative_template_id: ~
service_organization_template_id: ~
services:
lighthouse:
api_key: ~
connected_apps_api:
connected_apps:
url: https://sandbox-api.va.gov/internal/auth/v3/user/connected-apps
api_key: ~
revoke_url: https://sandbox-api.va.gov/internal/auth/v3/user/consent
auth_access_key: ~
authorization_server_scopes_api:
auth_server:
url: https://sandbox-api.va.gov/internal/auth/v2/server
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:
- Brian.Grubb@va.gov
- dana.kuykendall@va.gov
- Jennifer.Waltz2@va.gov
- Joseph.Preisser@va.gov
- Joshua.Lashbrook@va.gov
- kathleen.dalfonso@va.gov
- kyle.pietrosanto@va.gov
- lihan@adhocteam.us
- Lucas.Tickner@va.gov
- Ricardo.DaSilva@va.gov
- robert.shinners@va.gov
- shay.norton@va.gov
- tammy.hurley1@va.gov
staging_emails:
- Brian.Grubb@va.gov
- Joseph.Preisser@va.gov
- kyle.pietrosanto@va.gov
- lihan@adhocteam.us
- Lucas.Tickner@va.gov
- Ricardo.DaSilva@va.gov
- tammy.hurley1@va.gov
- vfep_support_team@va.gov
- eugenia.gina.ronat@accenturefederal.com
- morgan.whaley@accenturefederal.com
- m.c.shah@accenturefederal.com
- d.a.barnes@accenturefederal.com
- jacob.finnern@accenturefederal.com
- hocine.halli@accenturefederal.com
- adam.freemer@accenturefederal.com
spool_submission:
emails:
- Brian.Grubb@va.gov
- dana.kuykendall@va.gov
- Jennifer.Waltz2@va.gov
- Joseph.Preisser@va.gov
- Joshua.Lashbrook@va.gov
- kathleen.dalfonso@va.gov
- kyle.pietrosanto@va.gov
- lihan@adhocteam.us
- Lucas.Tickner@va.gov
- Ricardo.DaSilva@va.gov
- shay.norton@va.gov
- tammy.hurley1@va.gov
staging_emails:
- Brian.Grubb@va.gov
- Joseph.Preisser@va.gov
- kyle.pietrosanto@va.gov
- lihan@adhocteam.us
- Lucas.Tickner@va.gov
- Ricardo.DaSilva@va.gov
- tammy.hurley1@va.gov
- vfep_support_team@va.gov
- eugenia.gina.ronat@accenturefederal.com
- morgan.whaley@accenturefederal.com
- m.c.shah@accenturefederal.com
- d.a.barnes@accenturefederal.com
- jacob.finnern@accenturefederal.com
- hocine.halli@accenturefederal.com
- adam.freemer@accenturefederal.com
year_to_date_report:
emails:
- 222A.VBAVACO@va.gov
- 224B.VBAVACO@va.gov
- 224C.VBAVACO@va.gov
- Brandon.Scott2@va.gov
- Brian.Grubb@va.gov
- Christina.DiTucci@va.gov
- EDU.VBAMUS@va.gov
- John.McNeal@va.gov
- Joseph.Preisser@va.gov
- Joshua.Lashbrook@va.gov
- kathleen.dalfonso@va.gov
- kyle.pietrosanto@va.gov
- Lucas.Tickner@va.gov
- michele.mendola@va.gov
- Ricardo.DaSilva@va.gov
- shay.norton@va.gov
- tammy.hurley1@va.gov
staging_emails:
- Brian.Grubb@va.gov
- Joseph.Preisser@va.gov
- kyle.pietrosanto@va.gov
- lee.munson@va.gov
- lihan@adhocteam.us
- Lucas.Tickner@va.gov
- matthew.ziolkowski@va.gov
- Michael.Johnson19@va.gov
- patrick.burk@va.gov
- preston.sanders@va.gov
- robyn.noles@va.gov
- Ricardo.DaSilva@va.gov
- tammy.hurley1@va.gov
- vfep_support_team@va.gov
- eugenia.gina.ronat@accenturefederal.com
- morgan.whaley@accenturefederal.com
- m.c.shah@accenturefederal.com
- d.a.barnes@accenturefederal.com
- jacob.finnern@accenturefederal.com
- hocine.halli@accenturefederal.com
- adam.freemer@accenturefederal.com
oidc:
isolated_audience:
default: ~
claims: ~
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
es: PH7OPR4
evss: PZKWB6Y
global: PLPSIB0
idme: PVWB4R8
logingov: P2SHMM9
mvi: PCIPVGJ
mhv: PP2ZZ2V
form107959f1: P63EKXC
pega: P3ZJCBK
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/search/i14y
search_gsa:
access_key: SEARCH_GOV_ACCESS_KEY
affiliate: va
mock_search: false
url: https://api.gsa.gov/technology/searchgov/v2/results/i14y
# 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
url: https://api.gsa.gov/technology/searchgov/v2
bgs:
application: ~
client_station_id: ~
client_username: ~
env: ~
mock_response_location: ~
mock_responses: ~
ssl_verify_mode: "peer"
url: "https://something.fake.va.gov"
directory:
url: http://example.com/services/apps/v0/
apikey: fake_apikey
va_mobile:
url: "https://veteran.apps.va.gov"
ppms_base_url: "https://staff.apps.va.gov"
mock: false
key_path: /fake/client/key/path
timeout: 25
vetext:
url: "https://something.fake.va.gov"
mock: false
token: fake_token
timeout: 15
hqva_mobile:
url: "https://veteran.apps.va.gov"
mock: false
development_key_path: modules/health_quest/config/rsa/sandbox_rsa
facilities:
url: "https://staging-api.va.gov"
ids_path: "/facilities_api/v1/va"
lighthouse:
url: "https://sandbox-api.va.gov"
pgd_path: "/services/pgd/v0/r4"
pgd_token_path: "/oauth2/pgd/v1/token"
health_api_path: "/services/fhir/v0/r4"
health_token_path: "/oauth2/health/system/v1/token"
host: "sandbox-api.va.gov"
pgd_aud_claim_url: "https://deptva-eval.okta.com/oauth2/aus8x27nv4g4BS01v2p7"
health_aud_claim_url: "https://deptva-eval.okta.com/oauth2/aus8nm1q0f7VQ0a482p7"
condition_aud_claim_url: "https://deptva-eval.okta.com/oauth2/aus8nm1q0f7VQ0a482p7/v1/token"
claim_common_id: "0oabja2lpllERXWxo2p7"
grant_type: "client_credentials"
client_assertion_type: "urn:ietf:params:oauth:client-assertion-type:jwt-bearer"
redis_session_prefix: "healthquest_lighthouse"
health_api: "health_api"
pgd_api: "pgd_api"
mock: false
key_path: /app/secret/health-quest.lighthouse.key
pgd_api_scopes:
- "launch launch/patient"
- "patient/Observation.read"
- "patient/Observation.write"
- "patient/Questionnaire.read"
- "patient/Questionnaire.write"
- "patient/QuestionnaireResponse.read"
- "patient/QuestionnaireResponse.write"
health_api_scopes:
- "launch launch/patient"
- "patient/Appointment.read"
- "patient/Location.read"
- "patient/Organization.read"
- "patient/Patient.read"
- "patient/Condition.read"
- "patient/Observation.read"
- "patient/Practitioner.read"
- "patient/Medication.read"
- "system/Endpoint.read"
# settings va.gov uses related to lighthouse api's
lighthouse:
auth:
ccg:
client_id: ~
rsa_key: ~
api_key: fake_key
benefits_claims:
host: https://sandbox-api.va.gov
access_token:
aud_claim_url: https://deptva-eval.okta.com/oauth2/ausdg7guis2TYDlFe2p7/v1/token
client_id: ~
rsa_key: ~
use_mocks: false
form526:
host: https://staging-api.va.gov