forked from edgexfoundry/edgex-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.toml
89 lines (74 loc) · 2.57 KB
/
configuration.toml
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
#################################################################################
# Copyright 2019 Dell Inc.
# Copyright 2020 Intel Corp.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
# in compliance with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied. See the License for the specific language governing permissions and limitations under
# the License.
#
#################################################################################
# This is a TOML config file for EdgeX security-secretstore-setup service.
LogLevel = "DEBUG"
[SecretStore]
Type = "vault"
Protocol = "http"
Host = "localhost"
Port = 8200
CertPath = ""
CaFilePath = ""
CertFilePath = ""
KeyFilePath = ""
TokenFolderPath = "/vault/config/assets"
TokenFile = "resp-init.json"
VaultSecretShares = 5
VaultSecretThreshold = 3
TokenProvider = "/security-file-token-provider"
TokenProviderArgs = [ "-confdir", "res-file-token-provider" ]
TokenProviderType = "oneshot"
TokenProviderAdminTokenPath = "/run/edgex/secrets/tokenprovider/secrets-token.json"
PasswordProvider = ""
PasswordProviderArgs = [ ]
RevokeRootTokens = true
ConsulSecretsAdminTokenPath = "/tmp/edgex/secrets/edgex-consul/admin/token.json"
[Databases]
[Databases.admin]
Username = "admin"
[Databases.authorization]
Username = "admin"
[Databases.config]
Username = "admin"
[Databases.local]
Username = "admin"
[Databases.command]
Service = "core-command"
Username = "core-command"
[Databases.metadata]
Service = "core-metadata"
Username = "core-metadata"
[Databases.coredata]
Service = "core-data"
Username = "core-data"
[Databases.rulesengine]
Service = "app-rules-engine"
Username = "app-rules-engine"
[Databases.notifications]
Service = "support-notifications"
Username = "support-notifications"
[Databases.scheduler]
Service = "support-scheduler"
Username = "support-scheduler"
[KongAdmin]
ConfigTemplatePath = "/res/kong-admin-config.template.yml"
ConfigFilePath = "/tmp/kong/kong.yml"
ConfigJWTPath = "/tmp/edgex/secrets/security-proxy-setup/kong-admin-jwt"
ConfigJWTDuration = "1h"
[SecureMessageBus]
Type = "none" # blank or none if MessageBus not secured, "redis" if secured. "mqtt" is TBD
KuiperConfigPath = "/tmp/kuiper/edgex.yaml"
KuiperConnectionsPath = "/tmp/kuiper-connections/connection.yaml"