-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
Copy pathConfigs.java
793 lines (638 loc) · 21.9 KB
/
Configs.java
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
/*
* Copyright (c) 2023 Airbyte, Inc., all rights reserved.
*/
package io.airbyte.config;
import io.airbyte.commons.version.AirbyteVersion;
import io.airbyte.commons.version.Version;
import io.airbyte.config.helpers.LogConfigs;
import io.airbyte.config.storage.CloudStorageConfigs;
import java.net.URI;
import java.nio.file.Path;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
/**
* This interface defines the general variables for configuring Airbyte.
* <p>
* Please update the configuring-airbyte.md document when modifying this file.
* <p>
* Please also add one of the following tags to the env var accordingly:
* <p>
* 1. 'Internal-use only' if a var is mainly for Airbyte-only configuration. e.g. tracking, test or
* Cloud related etc.
* <p>
* 2. 'Alpha support' if a var does not have proper support and should be used with care.
*/
@SuppressWarnings("PMD.BooleanGetMethodName")
public interface Configs {
// CORE
// General
/**
* Distinguishes internal Airbyte deployments. Internal-use only.
*/
String getAirbyteRole();
/**
* Defines the Airbyte deployment version.
*/
AirbyteVersion getAirbyteVersion();
/**
* Defines the max supported Airbyte Protocol Version
*/
Version getAirbyteProtocolVersionMax();
/**
* Defines the min supported Airbyte Protocol Version
*/
Version getAirbyteProtocolVersionMin();
String getAirbyteVersionOrWarning();
/**
* Defines the bucket for caching specs. This immensely speeds up spec operations. This is updated
* when new versions are published.
*/
String getSpecCacheBucket();
/**
* Distinguishes internal Airbyte deployments. Internal-use only.
*/
DeploymentMode getDeploymentMode();
/**
* Defines if the deployment is Docker or Kubernetes. Airbyte behaves accordingly.
*/
WorkerEnvironment getWorkerEnvironment();
/**
* Defines the configs directory. Applies only to Docker, and is present in Kubernetes for backward
* compatibility.
*/
Path getConfigRoot();
/**
* Defines the Airbyte workspace directory. Applies only to Docker, and is present in Kubernetes for
* backward compatibility.
*/
Path getWorkspaceRoot();
/**
* Defines the URL to pull the remote connector catalog from.
*
* @return
*/
Optional<URI> getRemoteConnectorCatalogUrl();
// Docker Only
/**
* Defines the name of the Airbyte docker volume.
*/
String getWorkspaceDockerMount();
/**
* Defines the name of the docker mount that is used for local file handling. On Docker, this allows
* connector pods to interact with a volume for "local file" operations.
*/
String getLocalDockerMount();
/**
* Defines the docker network jobs are launched on with the new scheduler.
*/
String getDockerNetwork();
Path getLocalRoot();
// Secrets
/**
* Defines the GCP Project to store secrets in. Alpha support.
*/
String getSecretStoreGcpProjectId();
/**
* Define the JSON credentials used to read/write Airbyte Configuration to Google Secret Manager.
* These credentials must have Secret Manager Read/Write access. Alpha support.
*/
String getSecretStoreGcpCredentials();
/**
* Defines the Secret Persistence type. None by default. Set to GOOGLE_SECRET_MANAGER to use Google
* Secret Manager. Set to TESTING_CONFIG_DB_TABLE to use the database as a test. Set to VAULT to use
* Hashicorp Vault. Alpha support. Undefined behavior will result if this is turned on and then off.
*/
SecretPersistenceType getSecretPersistenceType();
/**
* Define the vault address to read/write Airbyte Configuration to Hashicorp Vault. Alpha Support.
*/
String getVaultAddress();
/**
* Define the vault path prefix to read/write Airbyte Configuration to Hashicorp Vault. Empty by
* default. Alpha Support.
*/
String getVaultPrefix();
/**
* Define the vault token to read/write Airbyte Configuration to Hashicorp Vault. Empty by default.
* Alpha Support.
*/
String getVaultToken();
/**
* Defines thw aws_access_key configuration to use AWSSecretManager.
*/
String getAwsAccessKey();
/**
* Defines aws_secret_access_key to use for AWSSecretManager.
*/
String getAwsSecretAccessKey();
// Database
/**
* Define the Jobs Database user.
*/
String getDatabaseUser();
/**
* Define the Jobs Database password.
*/
String getDatabasePassword();
/**
* Define the Jobs Database url in the form of
* jdbc:postgresql://${DATABASE_HOST}:${DATABASE_PORT/${DATABASE_DB}. Do not include username or
* password.
*/
String getDatabaseUrl();
/**
* Define the minimum flyway migration version the Jobs Database must be at. If this is not
* satisfied, applications will not successfully connect. Internal-use only.
*/
String getJobsDatabaseMinimumFlywayMigrationVersion();
/**
* Define the total time to wait for the Jobs Database to be initialized. This includes migrations.
*/
long getJobsDatabaseInitializationTimeoutMs();
/**
* Define the Configs Database user. Defaults to the Jobs Database user if empty.
*/
String getConfigDatabaseUser();
/**
* Define the Configs Database password. Defaults to the Jobs Database password if empty.
*/
String getConfigDatabasePassword();
/**
* Define the Configs Database url in the form of
* jdbc:postgresql://${DATABASE_HOST}:${DATABASE_PORT/${DATABASE_DB}. Defaults to the Jobs Database
* url if empty.
*/
String getConfigDatabaseUrl();
/**
* Define the minimum flyway migration version the Configs Database must be at. If this is not
* satisfied, applications will not successfully connect. Internal-use only.
*/
String getConfigsDatabaseMinimumFlywayMigrationVersion();
/**
* Define the total time to wait for the Configs Database to be initialized. This includes
* migrations.
*/
long getConfigsDatabaseInitializationTimeoutMs();
/**
* Define if the Bootloader should run migrations on start up.
*/
boolean runDatabaseMigrationOnStartup();
// Temporal Cloud - Internal-Use Only
/**
* Define if Temporal Cloud should be used. Internal-use only.
*/
boolean temporalCloudEnabled();
/**
* Temporal Cloud target endpoint, usually with form ${namespace}.tmprl.cloud:7233. Internal-use
* only.
*/
String getTemporalCloudHost();
/**
* Temporal Cloud namespace. Internal-use only.
*/
String getTemporalCloudNamespace();
/**
* Temporal Cloud client cert for SSL. Internal-use only.
*/
String getTemporalCloudClientCert();
/**
* Temporal Cloud client key for SSL. Internal-use only.
*/
String getTemporalCloudClientKey();
// Airbyte Services
/**
* Define the url where Temporal is hosted at. Please include the port. Airbyte services use this
* information.
*/
String getTemporalHost();
/**
* Define the number of retention days for the temporal history
*/
int getTemporalRetentionInDays();
/**
* Define the url where the Airbyte Server is hosted at. Airbyte services use this information.
* Manipulates the `INTERNAL_API_HOST` variable.
*/
String getAirbyteApiHost();
/**
* Define the port where the Airbyte Server is hosted at. Airbyte services use this information.
* Manipulates the `INTERNAL_API_HOST` variable.
*/
int getAirbyteApiPort();
/**
* Define the url the Airbyte Webapp is hosted at. Airbyte services use this information.
*/
String getWebappUrl();
// Jobs
/**
* Define the number of attempts a sync will attempt before failing.
*/
int getSyncJobMaxAttempts();
/**
* Define the number of days a sync job will execute for before timing out.
*/
int getSyncJobMaxTimeoutDays();
/**
* Defines whether job creation uses connector-specific resource requirements when spawning jobs.
* Works on both Docker and Kubernetes. Defaults to false for ease of use in OSS trials of Airbyte
* but recommended for production deployments.
*/
boolean connectorSpecificResourceDefaultsEnabled();
/**
* Define the job container's minimum CPU usage. Units follow either Docker or Kubernetes, depending
* on the deployment. Defaults to none.
*/
String getJobMainContainerCpuRequest();
/**
* Define the job container's maximum CPU usage. Units follow either Docker or Kubernetes, depending
* on the deployment. Defaults to none.
*/
String getJobMainContainerCpuLimit();
/**
* Define the job container's minimum RAM usage. Units follow either Docker or Kubernetes, depending
* on the deployment. Defaults to none.
*/
String getJobMainContainerMemoryRequest();
/**
* Define the job container's maximum RAM usage. Units follow either Docker or Kubernetes, depending
* on the deployment. Defaults to none.
*/
String getJobMainContainerMemoryLimit();
/**
* Get datadog or OTEL metric client for Airbyte to emit metrics. Allows empty value
*/
String getMetricClient();
/**
* If choosing OTEL as the metric client, Airbyte will emit metrics and traces to this provided
* endpoint.
*/
String getOtelCollectorEndpoint();
/**
* If using a LaunchDarkly feature flag client, this API key will be used.
*
* @return LaunchDarkly API key as a string.
*/
String getLaunchDarklyKey();
/**
* Get the type of feature flag client to use.
*
* @return
*/
String getFeatureFlagClient();
/**
* Defines a default map of environment variables to use for any launched job containers. The
* expected format is a JSON encoded String -> String map. Make sure to escape properly. Defaults to
* an empty map.
*/
Map<String, String> getJobDefaultEnvMap();
/**
* Defines the number of consecutive job failures required before a connection is auto-disabled if
* the AUTO_DISABLE_FAILING_CONNECTIONS flag is set to true.
*/
int getMaxFailedJobsInARowBeforeConnectionDisable();
/**
* Defines the required number of days with only failed jobs before a connection is auto-disabled if
* the AUTO_DISABLE_FAILING_CONNECTIONS flag is set to true.
*/
int getMaxDaysOfOnlyFailedJobsBeforeConnectionDisable();
// Jobs - Kube only
/**
* Define the check job container's minimum CPU request. Defaults to
* {@link #getJobMainContainerCpuRequest()} if not set. Internal-use only.
*/
String getCheckJobMainContainerCpuRequest();
/**
* Define the check job container's maximum CPU usage. Defaults to
* {@link #getJobMainContainerCpuLimit()} if not set. Internal-use only.
*/
String getCheckJobMainContainerCpuLimit();
/**
* Define the check job container's minimum RAM usage. Defaults to
* {@link #getJobMainContainerMemoryRequest()} if not set. Internal-use only.
*/
String getCheckJobMainContainerMemoryRequest();
/**
* Define the check job container's maximum RAM usage. Defaults to
* {@link #getJobMainContainerMemoryLimit()} if not set. Internal-use only.
*/
String getCheckJobMainContainerMemoryLimit();
/**
* Define the normalization job container's minimum CPU request. Defaults to
* {@link #getJobMainContainerCpuRequest()} if not set. Internal-use only.
*/
String getNormalizationJobMainContainerCpuRequest();
/**
* Define the normalization job container's maximum CPU usage. Defaults to
* {@link #getJobMainContainerCpuLimit()} if not set. Internal-use only.
*/
String getNormalizationJobMainContainerCpuLimit();
/**
* Define the normalization job container's minimum RAM usage. Defaults to
* {@link #getJobMainContainerMemoryRequest()} if not set. Internal-use only.
*/
String getNormalizationJobMainContainerMemoryRequest();
/**
* Define the normalization job container's maximum RAM usage. Defaults to
* {@link #getJobMainContainerMemoryLimit()} if not set. Internal-use only.
*/
String getNormalizationJobMainContainerMemoryLimit();
/**
* Define one or more Job pod tolerations. Tolerations are separated by ';'. Each toleration
* contains k=v pairs mentioning some/all of key, effect, operator and value and separated by `,`.
*/
List<TolerationPOJO> getJobKubeTolerations();
/**
* Define one or more Job pod node selectors. Each kv-pair is separated by a `,`. Used for the sync
* job and as fallback in case job specific (spec, check, discover) node selectors are not defined.
*/
Map<String, String> getJobKubeNodeSelectors();
/**
* Define an isolated kube node selectors, so we can run risky images in it.
*/
Map<String, String> getIsolatedJobKubeNodeSelectors();
/**
* Define if we want to run custom connector related jobs in a separate node pool.
*/
boolean getUseCustomKubeNodeSelector();
/**
* Define node selectors for Spec job pods specifically. Each kv-pair is separated by a `,`.
*/
Map<String, String> getSpecJobKubeNodeSelectors();
/**
* Define node selectors for Check job pods specifically. Each kv-pair is separated by a `,`.
*/
Map<String, String> getCheckJobKubeNodeSelectors();
/**
* Define node selectors for Discover job pods specifically. Each kv-pair is separated by a `,`.
*/
Map<String, String> getDiscoverJobKubeNodeSelectors();
/**
* Define one or more Job pod annotations. Each kv-pair is separated by a `,`. Used for the sync job
* and as fallback in case job specific (spec, check, discover) annotations are not defined.
*/
Map<String, String> getJobKubeAnnotations();
/**
* Define annotations for Spec job pods specifically. Each kv-pair is separated by a `,`.
*/
Map<String, String> getSpecJobKubeAnnotations();
/**
* Define annotations for Check job pods specifically. Each kv-pair is separated by a `,`.
*/
Map<String, String> getCheckJobKubeAnnotations();
/**
* Define annotations for Discover job pods specifically. Each kv-pair is separated by a `,`.
*/
Map<String, String> getDiscoverJobKubeAnnotations();
/**
* Define the Job pod connector image pull policy.
*/
String getJobKubeMainContainerImagePullPolicy();
/**
* Define the Job pod connector sidecar image pull policy.
*/
String getJobKubeSidecarContainerImagePullPolicy();
/**
* Define the Job pod connector image pull secret. Useful when hosting private images.
*/
List<String> getJobKubeMainContainerImagePullSecrets();
/**
* Define the Memory request for the Sidecar
*/
String getSidecarMemoryRequest();
/**
* Define the Memory limit for the Sidecar
*/
String getSidecarKubeMemoryLimit();
/**
* Define the CPU request for the Sidecar
*/
String getSidecarKubeCpuRequest();
/**
* Define the CPU limit for the Sidecar
*/
String getSidecarKubeCpuLimit();
/**
* Define the CPU request for the SOCAT Sidecar
*/
String getJobKubeSocatImage();
/**
* Define the CPU limit for the SOCAT Sidecar
*/
String getSocatSidecarKubeCpuLimit();
/**
* Define the Job pod socat image.
*/
String getSocatSidecarKubeCpuRequest();
/**
* Define the Job pod busybox image.
*/
String getJobKubeBusyboxImage();
/**
* Define the Job pod curl image pull.
*/
String getJobKubeCurlImage();
/**
* Define the Kubernetes namespace Job pods are created in.
*/
String getJobKubeNamespace();
// Logging/Monitoring/Tracking
/**
* Define either S3, Minio or GCS as a logging backend. Kubernetes only. Multiple variables are
* involved here. Please see {@link CloudStorageConfigs} for more info.
*/
LogConfigs getLogConfigs();
/**
* Defines the optional Google application credentials used for logging.
*/
String getGoogleApplicationCredentials();
/**
* Define either S3, Minio or GCS as a state storage backend. Multiple variables are involved here.
* Please see {@link CloudStorageConfigs} for more info.
*/
CloudStorageConfigs getStateStorageCloudConfigs();
/**
* Determine if Datadog tracking events should be published. Mainly for Airbyte internal use.
*/
boolean getPublishMetrics();
/**
* Set the Agent to publish Datadog metrics to. Only relevant if metrics should be published. Mainly
* for Airbyte internal use.
*/
String getDDAgentHost();
/**
* Set the port to publish Datadog metrics to. Only relevant if metrics should be published. Mainly
* for Airbyte internal use.
*/
String getDDDogStatsDPort();
/**
* Set constant tags to be attached to all metrics. Useful for distinguishing between environments.
* Example: airbyte_instance:dev,k8s-cluster:aws-dev
*/
List<String> getDDConstantTags();
/**
* Define whether to publish tracking events to Segment or log-only. Airbyte internal use.
*/
TrackingStrategy getTrackingStrategy();
/**
* Define whether to send job failure events to Sentry or log-only. Airbyte internal use.
*/
JobErrorReportingStrategy getJobErrorReportingStrategy();
/**
* Determines the Sentry DSN that should be used when reporting connector job failures to Sentry.
* Used with SENTRY error reporting strategy. Airbyte internal use.
*/
String getJobErrorReportingSentryDSN();
// APPLICATIONS
// Worker
/**
* Define the header name used to authenticate from an Airbyte Worker to the Airbyte API
*/
String getAirbyteApiAuthHeaderName();
/**
* Define the header value used to authenticate from an Airbyte Worker to the Airbyte API
*/
String getAirbyteApiAuthHeaderValue();
/**
* Define the maximum number of workers each Airbyte Worker container supports. Multiple variables
* are involved here. Please see {@link MaxWorkersConfig} for more info.
*/
MaxWorkersConfig getMaxWorkers();
/**
* Define if the worker should run get spec workflows. Defaults to true. Internal-use only.
*/
boolean shouldRunGetSpecWorkflows();
/**
* Define if the worker should run check connection workflows. Defaults to true. Internal-use only.
*/
boolean shouldRunCheckConnectionWorkflows();
/**
* Define if the worker should run discover workflows. Defaults to true. Internal-use only.
*/
boolean shouldRunDiscoverWorkflows();
/**
* Define if the worker should run sync workflows. Defaults to true. Internal-use only.
*/
boolean shouldRunSyncWorkflows();
/**
* Define if the worker should run connection manager workflows. Defaults to true. Internal-use
* only.
*/
boolean shouldRunConnectionManagerWorkflows();
/**
* Define if the worker should run notification workflows. Defaults to true. Internal-use only.
*/
public boolean shouldRunNotifyWorkflows();
// Worker - Data Plane configs
/**
* Define a set of Temporal Task Queue names for which the worker should register handlers for to
* process tasks related to syncing data. - For workers within Airbyte's Control Plane, this returns
* the Control Plane's default task queue. - For workers within a Data Plane, this returns only task
* queue names specific to that Data Plane. Internal-use only.
*/
Set<String> getDataSyncTaskQueues();
/**
* Return the Control Plane endpoint that workers in a Data Plane will hit for authentication. This
* is separate from the actual endpoint being hit for application logic. Internal-use only.
*/
String getControlPlaneAuthEndpoint();
/**
* Return the service account a data plane uses to authenticate with a control plane. Internal-use
* only.
*/
String getDataPlaneServiceAccountCredentialsPath();
/**
* Return the service account email a data plane uses to authenticate with a control plane.
* Internal-use only.
*/
String getDataPlaneServiceAccountEmail();
// Worker - Kube only
/**
* Define the local ports the Airbyte Worker pod uses to connect to the various Job pods.
*/
Set<Integer> getTemporalWorkerPorts();
// Container Orchestrator
/**
* Define if Airbyte should use the container orchestrator. Internal-use only. Should always be set
* to true - otherwise causes syncs to be run on workers instead.
*/
boolean getContainerOrchestratorEnabled();
/**
* Get the name of the container orchestrator secret. Internal-use only.
*/
String getContainerOrchestratorSecretName();
/**
* Get the mount path for a secret that should be loaded onto container orchestrator pods.
* Internal-use only.
*/
String getContainerOrchestratorSecretMountPath();
/**
* Define the image to use for the container orchestrator. Defaults to the Airbyte version.
*/
String getContainerOrchestratorImage();
/**
* Define the replication orchestrator's minimum CPU usage. Defaults to none.
*/
String getReplicationOrchestratorCpuRequest();
/**
* Define the replication orchestrator's maximum CPU usage. Defaults to none.
*/
String getReplicationOrchestratorCpuLimit();
/**
* Define the replication orchestrator's minimum RAM usage. Defaults to none.
*/
String getReplicationOrchestratorMemoryRequest();
/**
* Define the replication orchestrator's maximum RAM usage. Defaults to none.
*/
String getReplicationOrchestratorMemoryLimit();
/**
* Get the longest duration of non long running activity
*/
int getMaxActivityTimeoutSecond();
/**
* Get initial delay in seconds between two activity attempts
*/
int getInitialDelayBetweenActivityAttemptsSeconds();
/**
* Get maximum delay in seconds between two activity attempts
*/
int getMaxDelayBetweenActivityAttemptsSeconds();
/**
* Get the delay in seconds between an activity failing and the workflow being restarted
*/
int getWorkflowFailureRestartDelaySeconds();
/**
* Get number of attempts of the non long running activities
*/
int getActivityNumberOfAttempt();
boolean getAutoDetectSchema();
boolean getApplyFieldSelection();
String getFieldSelectionWorkspaces();
String getStrictComparisonNormalizationWorkspaces();
String getStrictComparisonNormalizationTag();
enum TrackingStrategy {
SEGMENT,
LOGGING
}
enum JobErrorReportingStrategy {
SENTRY,
LOGGING
}
enum WorkerEnvironment {
DOCKER,
KUBERNETES
}
enum DeploymentMode {
OSS,
CLOUD
}
enum SecretPersistenceType {
NONE,
TESTING_CONFIG_DB_TABLE,
GOOGLE_SECRET_MANAGER,
VAULT,
AWS_SECRET_MANAGER
}
}