-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathkeys.go
More file actions
71 lines (69 loc) · 4.86 KB
/
keys.go
File metadata and controls
71 lines (69 loc) · 4.86 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
package params
import "strings"
var (
TenantKey = strings.ToLower(TenantEnv)
BranchKey = strings.ToLower(BranchEnv)
BaseURIKey = strings.ToLower(BaseURIEnv)
ProxyKey = strings.ToLower(ProxyEnv)
ProxyTypeKey = strings.ToLower(ProxyTypeEnv)
ProxyDomainKey = strings.ToLower(ProxyDomainEnv)
BaseAuthURIKey = strings.ToLower(BaseAuthURIEnv)
ClientTimeoutKey = strings.ToLower(ClientTimeoutEnv)
AstAPIKey = strings.ToLower(AstAPIKeyEnv)
ScansPathKey = strings.ToLower(ScansPathEnv)
GroupsPathKey = strings.ToLower(GroupsPathEnv)
AgentNameKey = strings.ToLower(AgentNameEnv)
IgnoreProxyKey = strings.ToLower(IgnoreProxyEnv)
CodeBashingPathKey = strings.ToLower(CodeBashingPathEnv)
ProjectsPathKey = strings.ToLower(ProjectsPathEnv)
ApplicationsPathKey = strings.ToLower(ApplicationsPathEnv)
ResultsPathKey = strings.ToLower(ResultsPathEnv)
ScanSummaryPathKey = strings.ToLower(ScanSummaryPathEnv)
RisksOverviewPathKey = strings.ToLower(RisksOverviewPathEnv)
ScsScanOverviewPathKey = strings.ToLower(ScsScanOverviewPathEnv)
SastResultsPathKey = strings.ToLower(SastResultsPathEnv)
KicsResultsPathKey = strings.ToLower(KicsResultsPathEnv)
BflPathKey = strings.ToLower(BflPathEnv)
PRDecorationGithubPathKey = strings.ToLower(PRDecorationGithubPathEnv)
PRDecorationGitlabPathKey = strings.ToLower(PRDecorationGitlabPathEnv)
PRDecorationBitbucketCloudPathKey = strings.ToLower(PRDecorationBitbucketCloudPathEnv)
PRDecorationBitbucketServerPathKey = strings.ToLower(PRDecorationBitbucketServerPathEnv)
PRDecorationAzurePathKey = strings.ToLower(PRDecorationAzurePathEnv)
UploadsPathKey = strings.ToLower(UploadsPathEnv)
SastRmPathKey = strings.ToLower(SastRmPathEnv)
AccessKeyIDConfigKey = strings.ToLower(AccessKeyIDEnv)
AccessKeySecretConfigKey = strings.ToLower(AccessKeySecretEnv)
TokenExpirySecondsKey = strings.ToLower(TokenExpirySecondsEnv)
AstRoleKey = strings.ToLower(AstRoleEnv)
AstWebAppHealthCheckPathKey = strings.ToLower(AstWebAppHealthCheckPathEnv)
AstKeycloakWebAppHealthCheckPathKey = strings.ToLower(AstKeycloakWebAppHealthCheckPathEnv)
HealthcheckPathKey = strings.ToLower(HealthcheckPathEnv)
HealthcheckDBPathKey = strings.ToLower(HealthcheckDBPathEnv)
HealthcheckMessageQueuePathKey = strings.ToLower(HealthcheckMessageQueuePathEnv)
HealthcheckObjectStorePathKey = strings.ToLower(HealthcheckObjectStorePathEnv)
HealthcheckInMemoryDBPathKey = strings.ToLower(HealthcheckInMemoryDBPathEnv)
HealthcheckLoggingPathKey = strings.ToLower(HealthcheckDBPathEnv)
HealthcheckScanFlowPathKey = strings.ToLower(HealthcheckScanFlowPathEnv)
HealthcheckSastEnginesPathKey = strings.ToLower(HealthcheckSastEnginesPathEnv)
QueriesPathKey = strings.ToLower(QueriesPathEnv)
QueriesClonePathKey = strings.ToLower(QueriesCLonePathEnv)
CreateOath2ClientPathKey = strings.ToLower(CreateOath2ClientPathEnv)
SastMetadataPathKey = strings.ToLower(SastScanIncPathEnv)
SastMetadataMetricsPathKey = strings.ToLower(SastScanIncMetricsPathEnv)
LogsPathKey = strings.ToLower(LogsPathEnv)
LogsEngineLogPathKey = strings.ToLower(LogsEngineLogPathEnv)
SastResultsPredicatesPathKey = strings.ToLower(SastResultsPredicatesPathEnv)
KicsResultsPredicatesPathKey = strings.ToLower(KicsResultsPredicatesPathEnv)
DescriptionsPathKey = strings.ToLower(DescriptionsPathEnv)
TenantConfigurationPathKey = strings.ToLower(TenantConfigurationPathEnv)
ResultsPdfReportPathKey = strings.ToLower(ResultsPdfReportPathEnv)
ExportPathKey = strings.ToLower(ExportPathEnv)
FeatureFlagsKey = strings.ToLower(FeatureFlagsEnv)
PolicyEvaluationPathKey = strings.ToLower(PolicyEvaluationPathEnv)
AccessManagementPathKey = strings.ToLower(AccessManagementPathEnv)
ByorPathKey = strings.ToLower(ByorPathEnv)
AiProxyAzureAiRouteKey = strings.ToLower(AiProxyAzureAiRouteEnv)
AiProxyCheckmarxAiRouteKey = strings.ToLower(AiProxyCheckmarxAiRouteEnv)
ASCAPortKey = strings.ToLower(ASCAPortEnv)
ScsRepoTokenKey = strings.ToLower(ScsRepoTokenEnv)
)