-
Notifications
You must be signed in to change notification settings - Fork 0
/
awala_libs_js.tf
99 lines (84 loc) · 3.26 KB
/
awala_libs_js.tf
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
module "awala_lib_core_js" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "relaynet-core-js"
description = "JavaScript library for the core of Awala"
homepage_url = "https://docs.relaycorp.tech/relaynet-core-js/"
licence = "mit"
topics = ["awala", "javascript", "nodejs"]
ci_contexts = local.nodejs_lib_ci_contexts
main_branch = "master"
}
module "awala_lib_testing_js" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "relaynet-testing-js"
description = "Testing utilities for Awala implementations in JavaScript"
homepage_url = "https://docs.relaycorp.tech/relaynet-testing-js/"
licence = "mit"
topics = ["awala", "javascript", "nodejs", "testing"]
ci_contexts = local.nodejs_lib_ci_contexts
}
module "awala_lib_keystore_db_js" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "keystore-db-js"
description = "TypeORM-based Private and Public Key Store extension for Awala in JavaScript"
homepage_url = "https://docs.relaycorp.tech/keystore-db-js/"
licence = "mit"
topics = ["awala", "typeorm"]
ci_contexts = local.nodejs_lib_ci_contexts
}
module "awala_lib_keystore_mongodb_js" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "awala-keystore-mongodb-js"
description = "MongoDB-based Certificate and Public Key Store for Awala in JavaScript"
homepage_url = "https://docs.relaycorp.tech/awala-keystore-mongodb-js/"
licence = "mit"
topics = ["awala", "mongodb"]
ci_contexts = local.nodejs_lib_ci_contexts
}
module "awala_lib_keystore_gcp_secretmanager_js" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "awala-keystore-cloud-js"
description = "Multi-cloud Awala Key Store for server-side Node.js apps"
homepage_url = "https://docs.relaycorp.tech/awala-keystore-cloud-js/"
licence = "mit"
topics = ["awala", "gcp", "mongodb", "hashicorp-vault"]
ci_contexts = local.nodejs_lib_ci_contexts
}
module "awala_lib_pohttp_js" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "relaynet-pohttp-js"
description = "JavaScript library implementing the PoHTTP binding"
homepage_url = "https://docs.relaycorp.tech/relaynet-pohttp-js/"
licence = "mit"
topics = ["awala", "awala-binding-pohttp"]
main_branch = "master"
ci_contexts = local.nodejs_lib_ci_contexts
}
module "awala_lib_cogrpc_js" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "relaynet-cogrpc-js"
description = "JavaScript library implementing the CogRPC binding"
homepage_url = "https://docs.relaycorp.tech/relaynet-cogrpc-js/"
licence = "mit"
topics = ["awala", "awala-binding-cogrpc"]
ci_contexts = local.nodejs_lib_ci_contexts
main_branch = "master"
}
module "awala_lib_poweb_js" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "relaynet-poweb-js"
description = "JavaScript implementation of the PoWeb binding"
homepage_url = "https://docs.relaycorp.tech/relaynet-poweb-js/"
licence = "mit"
topics = ["awala", "awala-binding-poweb"]
ci_contexts = local.nodejs_lib_ci_contexts
main_branch = "master"
}