-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathtrudy.tfignore
More file actions
48 lines (47 loc) · 1.9 KB
/
trudy.tfignore
File metadata and controls
48 lines (47 loc) · 1.9 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
#
# Copyright (c) 2023 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://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.
#
# SPDX-License-Identifier: Apache-2.0
#
# Trudy connector
module "trudy-connector" {
depends_on = [module.azurite]
source = "./modules/connector"
humanReadableName = "trudy"
participantId = var.trudy-bpn
database-host = local.trudy-postgres.database-host
database-name = local.databases.trudy.database-name
database-credentials = {
user = local.databases.trudy.database-username
password = local.databases.trudy.database-password
}
ssi-config = {
miw-url = "http://${kubernetes_service.miw.metadata.0.name}:${var.miw-api-port}"
miw-authorityId = var.miw-bpn
oauth-tokenUrl = "http://${kubernetes_service.keycloak.metadata.0.name}:${var.keycloak-port}/realms/miw_test/protocol/openid-connect/token"
oauth-clientid = "trudy_private_client"
oauth-secretalias = "client_secret_alias"
oauth-clientsecret = "trudy_private_client"
}
azure-account-name = var.trudy-azure-account-name
azure-account-key = local.trudy-azure-key-base64
azure-account-key-sas = var.trudy-azure-key-sas
azure-url = module.azurite.azurite-url
minio-config = {
minio-username = "trudyawsclient"
minio-password = "trudyawssecret"
}
}