-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathveraid.tf
65 lines (54 loc) · 2.02 KB
/
veraid.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
locals {
veraid_topics = ["veraid", "vera"]
}
module "veraid_js" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "veraid-js"
description = "VeraId library for Node.js"
homepage_url = "https://www.npmjs.com/package/@relaycorp/veraid"
licence = "mit"
topics = local.veraid_topics
ci_contexts = local.nodejs_lib_ci_contexts
}
module "veraid_jvm" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "veraid-jvm"
description = "VeraId library for the JVM"
homepage_url = "https://docs.relaycorp.tech/veraid-jvm/"
licence = "apache2"
topics = local.veraid_topics
ci_contexts = local.lib_jvm_ci_contexts
}
module "veraid_ca_server" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "veraid-authority"
description = "Cloud-native app that allows organisations to manage their VeraId members and the issuance of their respective bundles."
homepage_url = "https://docs.relaycorp.tech/veraid-authority/"
licence = "agpl"
topics = local.veraid_topics
ci_contexts = ["ci / ci"]
}
module "veraid_authority_tf_gcp" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "terraform-google-veraid-authority"
description = "Terraform module to manage an instance of VeraId Authority on GCP."
homepage_url = "https://registry.terraform.io/modules/relaycorp/veraid-authority/google"
licence = "agpl"
topics = ["veraid", "terraform", "gcp"]
ci_contexts = ["ci-module / ci", "ci-module-awala / ci", "ci-example / ci", "ci-example-awala / ci"]
pages_enabled = false
}
module "veraid_authority_js" {
source = "relaycorp/oss-project/github"
version = "2.14.0"
name = "veraid-authority-js"
description = "JS client library for the VeraId Authority API"
homepage_url = "https://www.npmjs.com/package/@relaycorp/veraid-authority"
licence = "mit"
topics = local.veraid_topics
ci_contexts = local.nodejs_lib_min_v20_ci_contexts
}