-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathdevelopment.yml
More file actions
2202 lines (2202 loc) · 66.4 KB
/
development.yml
File metadata and controls
2202 lines (2202 loc) · 66.4 KB
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
---
acc_rep_management:
prefill: true
account:
enabled: true
accredited_representative_portal:
allow_list:
github:
access_token: ~
base_uri: ~
path: ~
repo: ~
frontend_base_url: http://localhost:3001/representative
lighthouse:
benefits_claims:
host: https://sandbox-api.va.gov
path: /services/claims/v2/veterans
benefits_intake:
api_key: ~
host: https://sandbox-api.va.gov
path: "/services/vba_documents"
report:
batch_size: 1000
stale_sla: 10
use_mocks: false
version: v1
active_record_encryption:
deterministic_key: lRZb6GdKZX5L7zzuEe6osyDDC6V7R5PJ
key_derivation_salt: IdWoSgvha0ZyWLZPA4RLkYOMTbITYcKP
primary_key: Jhm5UbpDiP08qT2pW6EguvojkLSZjJdw
adapted_housing:
prefill: true
argocd:
slack:
api_key: ~
ask_va_api:
crm_api:
auth_url: https://login.microsoftonline.us
base_url: https://dev.integration.d365.va.gov
client_id: client_id
client_secret: secret
e_subscription_key: e_subscription_key
ocp_apim_subscription_key: subscription_key
resource: resource
s_subscription_key: s_subscription_key
service_name: VEIS-API
tenant_id: abcdefgh-1234-5678-12345-11e8b8ce491e
veis_api_path: eis/vagov.lob.ava/api
prefill: true
authorization_server_scopes_api:
auth_server:
url: https://sandbox-api.va.gov/internal/auth/v2/server
avs:
api_jwt: abcd1234abcd1234abcd1234abcd1234abcd1234
mock: true
timeout: 55
url: https://something.fake.va.gov
banners:
drupal_password: test
drupal_url: https://test.cms.va.gov/
drupal_username: banners_api
bd:
base_name: ~
benefits_intake_service:
api_key: ~
aws:
access_key_id: ~
bucket: ~
region: ~
secret_access_key: ~
enabled: true
url: ~
betamocks:
cache_dir: "../vets-api-mockdata"
enabled: true
recording: false
services_config: config/betamocks/services_config.yml
bgs:
application: ~
client_station_id: ~
client_username: ~
env: ~
external_key: lighthouse-vets-api
external_uid: lighthouse-vets-api
mock_response_location: ~
mock_responses: ~
ssl_verify_mode: peer
url: https://something.fake.va.gov
bid:
awards:
base_url: ~
credentials: ~
mock: true
binaries:
clamdscan: "/usr/bin/clamdscan"
pdfinfo: pdfinfo
pdftk: pdftk
bing:
key: ~
bio:
increase_compensation:
bucket: ~
region: ~
medical_expense_reports:
bucket: ~
region: ~
survivors_benefits:
bucket: ~
region: ~
bpds:
jwt_secret: abcd1234abcd1234abcd1234abcd1234abcd1234
mock: false
read_timeout: 20 # using the same timeout as lighthouse
schema_version: test
url: https://localhost:4000/api/v1/bpd # See the README for more information on how to run the BPDS locally
brd:
api_key: fake_key
base_name: https://something.fake.va.gov
breakers_disabled: ~
caseflow:
app_token: PUBLICDEMO123
host: https://dsva-appeals-certification-dev-1895622301.us-gov-west-1.elb.amazonaws.com
mock: true
timeout: 119
cave:
idp:
base_url: ~
connect_url: ~
hmac:
key_id: ~
secret: ~
mock: true
timeout: ~
central_mail:
upload:
enabled: true
host: test2.domaonline.com/EmmsAPI
token: "<CENTRAL_MAIL_TOKEN>"
check_in:
authentication:
max_auth_retry_limit: 3
retry_attempt_expiry: 604800
chip_api_v2:
base_path: dev
base_path_v2: dev
mock: false
redis_session_prefix: check_in_chip_v2
service_name: CHIP-API
timeout: 30
tmp_api_id: 2dcdrrn5zc
tmp_api_id_v2: 2dcdrrn5zc
tmp_api_user: TzY6DFrnjPE8dwxUMbFf9HjbFqRim2MgXpMpMciXJFVohyURUJAc7W99rpFzhfh2B3sVnn4
tmp_api_user_v2: TzY6DFrnjPE8dwxUMbFf9HjbFqRim2MgXpMpMciXJFVohyURUJAc7W99rpFzhfh2B3sVnn4
tmp_api_username: vetsapiTempUser
tmp_api_username_v2: vetsapiTempUser
url: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com
url_v2: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com
lorota_v2:
api_id: 22t00c6f97
api_id_v2: 22t00c6f97
api_key: fake_key
api_key_v2: fake_key
base_path: dev
base_path_v2: dev
key_path: fake_api_path
mock: false
redis_session_prefix: check_in_lorota_v2
redis_token_expiry: 43200
service_name: LoROTA-API
url: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com
url_v2: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com
map_api:
service_name: MAP-API
url: https://veteran.apps-staging.va.gov
travel_reimbursement_api_v2:
auth_url: https://fake.service.us
auth_url_v2: ~
claims_base_path: ~
claims_base_path_v2: eis/api/btsss/travelclaim
claims_url: https://fake.dev.va.gov
claims_url_v2: https://fake.dev.va.gov
client_id: ~
client_number: ~
client_number_oh: ~
client_secret: ~
e_subscription_key: ~
redis_token_expiry: 3540
s_subscription_key: ~
scope: ~
service_name: BTSSS-API
subscription_key: ~
tenant_id: abcdefgh-1234-5678-12345-11e8b8ce491e
travel_pay_client_id: ~
travel_pay_client_secret: secret
travel_pay_client_secret_oh: secret
travel_pay_resource: ~
vaos:
mock: false
chip:
api_gtwy_id: 2dcdrrn5zc
base_path: dev
mobile_app:
password: '12345'
tenant_id: 6f1c8b41-9c77-469d-852d-269c51a7d380
username: testuser
mock: true
url: https://vpce-06399548ef94bdb41-lk4qp2nd.execute-api.us-gov-west-1.vpce.amazonaws.com
claims_api:
audit_enabled: false
benefits_documents:
auth:
ccg:
aud_claim_url: ~
client_id: ~
rsa_key: ~
secret_key: "/srv/vets-api/secret/claims_api_bd_secret.key"
host: https://sandbox-api.va.gov
use_mocks: false
bgs:
mock_responses: false
claims_error_reporting:
environment_name: ~
disability_claims_mock_override: false
evss_container:
auth_base_name: ~
client_id: ~
client_key: ~
client_secret: ~
fes:
auth:
ccg:
aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi3ui83fLa68IJv2p7/v1/token
client_id: ~
secret_key: "/srv/vets-api/secret/claims_api_fes_ccg_secret.key"
service_url: ~
ssl: false
token_host: https://qa.lighthouse.va.gov
use_mocks: true
pdf_generator_526:
content_type: application/vnd.api+json
path: "/form-526ez-pdf-generator/v1/forms/"
url: ~
poa_v2:
disable_jobs: false
report_enabled: false
s3:
aws_access_key_id: ~
aws_secret_access_key: ~
bucket: ~
region: ~
schema_dir: config/schemas
slack:
webhook_url: https://example.com
token_validation:
api_key: ~
url: ~
user_info:
url: ~
v2_docs:
enabled: false
vanotify:
accepted_representative_template_id: ~
accepted_service_organization_template_id: ~
client_url: ~
declined_representative_template_id: ~
declined_service_organization_template_id: ~
services:
lighthouse:
api_key: ~
notification_client_secret: ~
notify_service_id: ~
claims_evidence_api:
base_url: https://claimevidence-api-fake.fake.bip.va.gov/api/v1/rest/
breakers_error_threshold: 80
include_request: false
jwt_secret: fake-secret
mock: false
ssl: false
timeout:
open: 30
read: 30
clamav:
host: 0.0.0.0
mock: true
port: '33100'
coe:
prefill: true
connected_apps_api:
connected_apps:
api_key: ~
auth_access_key: ~
revoke_url: https://sandbox-api.va.gov/internal/auth/v3/user/consent
url: https://sandbox-api.va.gov/internal/auth/v3/user/connected-apps
contention_classification_api:
expanded_contention_classification_path: expanded-contention-classification
hybrid_contention_classification_path: hybrid-contention-classification
open_timeout: 5
read_timeout: 10
url: http://contention-classification-api-dev.vfs.va.gov/
coverband:
github_api_key: ~
github_oauth_key: ~
github_oauth_secret: ~
github_organization: ~
github_team: ~
covid_vaccine:
enrollment_service:
job_enabled: ~
database_url: postgis:///vets-api
decision_review:
api_key: abcd1234abcd1234abcd1234abcd1234abcd1234
appealable_issues:
auth:
aud_claim_url: ~
client_id: ~
rsa_key: ~
token_url: ~
mock: true
url: https://sandbox-api.va.gov/services/appeals/appealable-issues/v0
benchmark_performance: true
delete_saved_claim_records_job_enabled: true
email_pdf_upload_cutoff_date: ~
mock: false
pdf_validation:
enabled: true
url: https://sandbox-api.va.gov/services/vba_documents/v1
prefill: true
s3:
aws_access_key_id: ~
aws_secret_access_key: ~
bucket: bucket
region: region
url: https://sandbox-api.va.gov/services/appeals/v1/decision_reviews
v1:
url: https://sandbox-api.va.gov/services/appeals/v2/decision_reviews
dependents:
prefill: true
dependents_verification:
prefill: true
dgi:
jwt:
private_key_path: modules/meb_api/spec/fixtures/dgi_private_test.pem
public_key_path: modules/meb_api/spec/fixtures/dgi_public_test.pem
sob:
claimants:
mock: ~
url: https://fake.sob.com
jwt:
private_key_path: modules/sob/spec/fixtures/test_private_key.pem
public_key_path: modules/sob/spec/fixtures/test_public_key.pem
vets:
mock: false
url: https://jenkins.ld.afsp.io:32512/vets-service/v1/
vye:
jwt:
kid: vye
private_key_path: modules/vye/spec/fixtures/dgi_private_test.pem
public_ica11_rca2_key_path: modules/vye/spec/fixtures/ICA11-RCA2-combined-cert.pem
public_key_path: modules/vye/spec/fixtures/dgi_public_test.pem
vets:
mock: false
url: ''
dhp:
fitbit:
client_id: ''
client_secret: ''
code_challenge: ''
code_verifier: ''
redirect_uri: http://localhost:3000/dhp_connected_devices/fitbit-callback
scope: heartrate activity nutrition sleep
mock: false
s3:
aws_access_key_id: ''
aws_secret_access_key: ''
bucket: ''
region: us-gov-west-1
digital_forms_api:
base_url: https://digital-forms-api-fake.fake.bip.va.gov/api/v1/rest/
breakers_error_threshold: 80
cache_ttl:
schema: 1
template: 1
include_request: false
jwt_secret: fake-secret
mock: false
ssl: false
timeout:
open: 30
read: 30
directory:
apikey: fake_apikey
health_server_id: ~
key: ~
notification_service_flag: ~
url: http://example.com/services/apps/v0/
disability_max_ratings_api:
open_timeout: 5
ratings_path: "/disability-max-ratings"
read_timeout: 10
url: http://disability-max-ratings-api-dev.vfs.va.gov
dispute_debt:
prefill: true
dmc:
client_id: 0be3d60e3983438199f192b6e723a6f0
client_secret: secret
debts_endpoint: debt-letter/get
fsr_payment_window: 30
mock_debts: false
mock_fsr: false
url: https://fwdproxy-dev.vfs.va.gov:4465/api/v1/digital-services/
dogstatsd:
enabled: false
edu:
prefill: true
production_excel_contents:
emails:
- patricia.terry1@va.gov
sftp:
host: ~
key_path: ~
pass: ~
port: ~
relative_307_path: ~
relative_351_path: ~
relative_path: ~
user: ~
show_form: ~
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_excel_contents:
emails:
- alex.chan1@va.gov
- gregg.puhala@va.gov
- noah.stern@va.gov
- marelby.hernandez@va.gov
- nawar.hussein@va.gov
- engin.akman@va.gov
staging_sco_email:
emails:
- gregg.puhala@va.gov
- noah.stern@va.gov
- jeffrey.marks@govcio.com
- taras.kurilo@va.gov
- nawar.hussein@va.gov
staging_spool_contents:
emails:
- noah.stern@va.gov
- gregg.puhala@va.gov
- kara.ciprich@va.gov
- vishnhav.ashok@va.gov
- donna.saunders@va.gov
- ariana.adili@govcio.com
- marelby.hernandez@va.gov
- nawar.hussein@va.gov
- engin.akman@va.gov
email_verification:
jwt_secret: "b0a06b58cc2674005f300f5ca1bc3fbb29813b73ebcfd3dd2f8d4bede0b6ec34"
evss:
alternate_service_name: wss-form526-services-web-v2
aws:
cert_path: ~
key_path: ~
root_ca: ~
url: http://fake.evss-reference-data-service.dev/v1
cert_path: ~
disability_compensation_form:
submit_timeout: 355
timeout: 55
dvp:
url: http://fake.dvp-docker-container
international_postal_codes: config/evss/international_postal_codes.json
key_path: ~
letters:
timeout: 55
url: https://csraciapp6.evss.srarad.com
mock_claims: false
mock_common_service: true
mock_disabilities_form: true
mock_gi_bill_status: false
mock_letters: false
prefill: true
root_cert_path: ~
s3:
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
uploads_enabled: false
service_name: wss-form526-services-web
url: https://csraciapp6.evss.srarad.com
versions:
claims: 3.6
common: 11.6
documents: 3.7
expiry_scanner:
directories: ~
slack:
channel_id: ~
flipper:
github_api_key: ~
github_oauth_key: ~
github_oauth_secret: ~
github_organization: ~
github_team: ~
mute_logs: false
form0781_remediation:
aws:
bucket: ~
region: ~
form526_backup:
api_key: ~
aws:
access_key_id: ~
bucket: ~
region: ~
secret_access_key: ~
enabled: true
submission_method: single
url: https://sandbox-api.va.gov/services/vba_documents/v1/
form526_export:
aws:
access_key_id: ~
bucket: ~
region: ~
secret_access_key: ~
form_10275:
submission_email: form_10275@example.com
form_10282:
sftp:
host: ~
key_path: ~
pass: ~
port: ~
relative_path: ~
user: ~
form_10_10cg:
carma:
mulesoft:
async_timeout: 600
auth:
auth_token_path: ~
client_id: ~
client_secret: ~
mock: false
timeout: ~
token_url: ~
client_id: ~
client_secret: ~
host: ~
timeout: 30
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
form_intake:
api_version: 'v1'
breakers_error_threshold: 80
host: <%= ENV['form_intake__host'] %>
path: <%= ENV['form_intake__path'] %>
timeout: 30
use_mocks: false
form_mock_ae_design_patterns:
prefill: true
form_mock_prefill:
prefill: true
form_upload:
prefill: true
forms:
mock: false
url: https://sandbox-api.va.gov/services/va_forms/v0/
forms_api_benefits_intake:
api_key: ~
url: https://sandbox-api.va.gov/services/vba_documents/v1/
fsr:
prefill: true
gclaws:
accreditation:
agents:
url: http://localhost:5000/api/v2/accreditations/agents
api_key: fake_key
attorneys:
url: http://localhost:5000/api/v2/accreditations/attorneys
icn:
url: http://localhost:5000/api/v2/accreditations/icn
origin: fake_origin
representatives:
url: http://localhost:5000/api/v2/accreditations/representatives
veteran_service_organizations:
url: http://localhost:5000/api/v2/accreditations/veteranserviceorganizations
accreditation_xlsx:
password: ~
url: ~
username: ~
genisis:
base_url: ~
form_submission_path: "/formdata"
pass: ~
service_path: ~
user: ~
gids:
open_timeout: 1
read_timeout: 1
search:
open_timeout: 10
read_timeout: 10
url: https://dev.va.gov/gids
github_cvu:
installation_id: ~
integration_id: ~
private_pem: ~
github_stats:
token: fake_token
username: github-stats-rake
google_analytics:
tracking_id: ~
url: https://fwdproxy-staging.vfs.va.gov:4473
google_analytics_cvu:
auth_provider_x509_cert_url: https://www.googleapis.com/oauth2/v1/certs
auth_uri: https://accounts.google.com/o/oauth2/auth
client_email: va-gov-top-user-viewports@vsp-analytics-and-insights.iam.gserviceaccount.com
client_id: ~
client_x509_cert_url: https://www.googleapis.com/robot/v1/metadata/x509/va-gov-top-user-viewports%40vsp-analytics-and-insights.iam.gserviceaccount.com
private_key: ~
private_key_id: ~
project_id: vsp-analytics-and-insights
token_uri: https://oauth2.googleapis.com/token
type: service_account
govdelivery:
server: stage-tms.govdelivery.com
staging_service: true
token: ~
hca:
ca: []
ee:
endpoint: http://example.com
pass: password
user: HCASvcUsr
endpoint: https://test-foo.vets.gov
future_discharge_testing: ~
prefill: true
s3:
aws_access_key_id: ~
aws_secret_access_key: ~
bucket: ~
region: ~
timeout: 30
hostname: 127.0.0.1:3000
iam_ssoe:
client_cert_path: spec/fixtures/iam_ssoe/oauth.crt
client_id: Mobile_App_API_Server_LOWERS
client_key_path: spec/fixtures/iam_ssoe/oauth.key
oauth_url: https://int.fed.eauth.va.gov:444
timeout: 20
ibm:
breakers_error_threshold: 80
host: ~
path: "/api/validated-forms"
use_mocks: false
version: v1
increase_compensation:
prefill: true
intent_to_file:
prefill: true
ivc_champva:
pega_api:
api_key: fake_api_key
base_path: fake_base_path
prefill: true
ivc_champva_llm_processor_api:
api_key: fake_llm_api_key
host: fake_base_path
ivc_champva_ves_api:
api_key: fake_api_key
app_id: ~
host: https://fwdproxy-staging.vfs.va.gov:4429
mock: false
ohi_api_key: fake_ohi_api_key
subject: "Proxy Client"
ivc_forms:
form_status_job:
enabled: ~
slack_webhook_url: ~
s3:
aws_access_key_id: ~
aws_secret_access_key: ~
bucket: bucket
region: region
sidekiq:
missing_form_status_job:
enabled: true
old_records_cleanup_job:
enabled: true
kafka_producer:
aws_region: "us-gov-west-1"
aws_role_arn: "arn:aws:iam::123456789012:role/role-name" # this is an example
broker_urls: ["localhost:19092"] # for local Kafka cluster in Docker
sasl_mechanisms: 'GSSAPI'
schema_registry_url: "http://localhost:8081" # for local Schema Registry in Docker
security_protocol: 'plaintext'
test_topic_name: submission_trace_mock_test
topic_name: submission_trace_form_status_change_test
kms_key_id: ~
lgy:
api_key: ~
app_id: ~
base_url: http://www.example.com
mock_coe: true
lgy_sahsha:
api_key: ~
app_id: ~
base_url: http://www.example.com
mock_coe: ~
lighthouse:
api_key: fake_key
auth:
ccg:
client_id: ~
rsa_key: ~
benefits_claims:
access_token:
aud_claim_url: https://deptva-eval.okta.com/oauth2/ausdg7guis2TYDlFe2p7/v1/token
client_id: ~
rsa_key: ~
aud_claim_url: ~
form526:
access_token:
aud_claim_url: https://deptva-eval.okta.com/oauth2/ausdg7guis2TYDlFe2p7/v1/token
client_id: ~
rsa_key: ~
host: https://staging-api.va.gov
use_mocks: false
host: https://sandbox-api.va.gov
use_mocks: false
benefits_discovery:
host: 'https://sandbox.lighthouse.va.gov'
x_api_key: ~
x_app_id: ~
benefits_documents:
access_token:
aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi3ui83fLa68IJv2p7/v1/token
host: https://sandbox-api.va.gov
timeout: 65
use_mocks: false
benefits_education:
access_token:
aud_claim_url: https://deptva-eval.okta.com/oauth2/ausln2mo4jCAYRrlR2p7/v1/token
client_id: ~
rsa_key: ~
host: https://sandbox-api.va.gov
use_mocks: false
benefits_intake:
api_key: ~
breakers_error_threshold: 80
host: https://sandbox-api.va.gov
path: "/services/vba_documents"
report:
batch_size: 1000
stale_sla: 10
use_mocks: false
version: v1
benefits_reference_data:
path: services/benefits-reference-data
staging_url: https://staging-api.va.gov
url: https://sandbox-api.va.gov
version: v1
direct_deposit:
access_token:
aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi0e21hbv5iElEh2p7/v1/token
client_id: ~
rsa_key: ~
host: https://sandbox-api.va.gov
use_mocks: false
facilities:
api_key: fake_key
hqva_mobile:
url: https://veteran.apps.va.gov
url: https://sandbox-api.va.gov
veterans_health:
url: ~
healthcare_cost_and_coverage:
access_token:
aud_claim_url: https://deptva-eval.okta.com/oauth2/fake1tcityDg93hgKkd#/v1/token
client_id: fake_client_id
kid: ''
rsa_key: path/to/fake/pem
host: https://test-api.va.gov
scopes:
- system/ChargeItem.read
- system/Invoice.read
- system/PaymentReconciliation.read
- system/MedicationDispense.read
- system/Encounter.read
- system/Account.read
- system/Medication.read
- system/Organization.read
- system/Patient.read
- launch
timeout: 30
use_mocks: false
letters_generator:
access_token:
aud_claim_url: https://deptva-eval.okta.com/oauth2/ausftw7zk6eHr7gMN2p7/v1/token
client_id: ~
path: oauth2/va-letter-generator/system/v1/token
rsa_key: ~
path: "/services/va-letter-generator/v1/"
url: https://sandbox-api.va.gov
use_mocks: false
s3:
aws_access_key_id: ~
aws_secret_access_key: ~
bucket: lighthouse_s3_bucket
region: lighthouse_s3_region
uploads_enabled: false
staging_api_key: fake_key
veteran_verification:
aud_claim_url: https://deptva-eval.okta.com/oauth2/ausi3u00gw66b9Ojk2p7/v1/token
form526:
access_token:
client_id: ~
rsa_key: ~
aud_claim_url: ~
host: https://staging-api.va.gov
use_mocks: true
host: https://staging-api.va.gov
status:
access_token:
client_id: ~
rsa_key: ~
host: https://staging-api.va.gov
use_mocks: false
use_mocks: false
veterans_health:
fast_tracker:
api_key: "/app/secret/lighthouse_fast_track_api.key"
api_scope:
- launch
- patient/AllergyIntolerance.read
- patient/DiagnosticReport.read
- patient/Patient.read
- system/Patient.read
- patient/Observation.read
- patient/Practitioner.read
- patient/MedicationRequest.read
- patient/Condition.read
aud_claim_url: https://deptva-eval.okta.com/oauth2/aus8nm1q0f7VQ0a482p7/v1/token
client_assertion_type: urn:ietf:params:oauth:client-assertion-type:jwt-bearer
client_id: 0oaaxkp0aeXEJkMFw2p7
grant_type: client_credentials
url: https://sandbox-api.va.gov
use_mocks: false
lighthouse_health_immunization:
access_token_url: https://sandbox-api.va.gov/oauth2/health/system/v1/token
api_url: https://sandbox-api.va.gov/services/fhir/v0/r4
audience_claim_url: https://deptva-eval.okta.com/oauth2/aus8nm1q0f7VQ0a482p7/v1/token
client_id: 0oad0xggirKLf2ger2p7
key_path: ~
scopes:
- launch launch/patient
- patient/Immunization.read
- patient/Location.read
locators:
mock_gis: true
vha: ~
vha_access_satisfaction: ~
vha_access_waittime: ~
lockbox:
master_key: 0d78eaf0e90d4e7b8910c9112e16e66d8b00ec4054a89aa426e32712a13371e9
mail_automation:
client_id: va_gov_test
client_secret: fake_key
endpoint: "/mas/api/test/masInsertAndInitiateApcasClaimProcessing"
token_endpoint: "/pca/api/test/token"
url: https://viccs-api-test.ibm-intelligent-automation.com
maintenance:
aws:
access_key_id: ~
bucket: ~
region: ~
secret_access_key: ~
pagerduty_api_token: FAKE
pagerduty_api_url: https://api.pagerduty.com
service_query_prefix: 'External: '
services:
1010ez: ~
1010ezr: ~
accredited_representative_portal: ~
appeals: P9S4RFU
arcgis: P45YBFA
askva: ~
avs: ~
bgs: P5Q2OCZ
carma: P6XLE0T
caseflow: ~
cie: ~
coe: PSY4HU1
community_care_ds: ~
decision_reviews: ~
dgi_claimants: ~
disability_compensation_form: ~
dmc: ~
dslogon: P9DJJAV
es: PH7OPR4
evss: PZKWB6Y
form1010d: ~
form1010d_ext: ~
form107959a: ~
form107959c: ~
form107959f1: ~
form107959f2: ~
form21p0537: ~
form21p601: ~
form_upload_benefits_intake: ~
global: PLPSIB0
hcq: PWGA814
idme: PVWB4R8
lighthouse_benefits_claims: ~
lighthouse_benefits_education: ~
lighthouse_benefits_intake: ~
lighthouse_direct_deposit: ~
lighthouse_vshe: ~
logingov: P2SHMM9
mdot: PGT74RC
mhv: PP2ZZ2V
mhv_meds: ~
mhv_mr: ~
mhv_platform: ~
mhv_sm: ~
mvi: PCIPVGJ
pcie: ~
pega: P3ZJCBK
sahsha: ~
search: PRG8HJI
ssoe: ~
ssoe_oauth: ~
tc: ~
tims: PUL8OQ4
travel_pay: ~
vaos: ~
vaosWarning: ~
vapro_contact_info: ~
vapro_health_care_contacts: ~
vapro_military_info: ~
vapro_notification_settings: ~
vapro_personal_info: ~
vass: ~
vbms: ~
vet360: PHVOGQ1
vetext_vaccine: P9PG8HG
vic: P7LW3MS
vre: ~
vre_ch31_eligibility: ~
mcp:
notifications:
batch_size: 10
job_interval: 10
vbs:
api_key: abcd1234abcd1234abcd1234abcd1234abcd1234
base_path: "/base/path"
host: fake_url.com:9000
mock: false
mock_vista: false
service_name: VBS
url: https://fake_url.com:9000
vbs_client_key: abcd1234abcd1234abcd1234abcd1234abcd1234
vbs_v2:
api_key: abcd1234abcd1234abcd1234abcd1234abcd1234
base_path: "/base/path"
host: fake_url.com:9000
mock: false
mock_vista: false
service_name: VBS
url: https://fake_url.com:9000
mdot:
api_key: abcd1234abcd1234abcd1234abcd1234abcd1234
mock: false
prefill: true
url: https://fwdproxy-staging.vfs.va.gov:4466
medical_expense_reports: