-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjbang-catalog.json
executable file
·59 lines (59 loc) · 2.45 KB
/
jbang-catalog.json
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
{
"catalogs": {
"demo": {
"catalog-ref": "https://github.com/jbangdev/jbang-catalog/blob/HEAD/jbang-catalog.json"
},
"testv2": {
"catalog-ref": "https://github.com/nandorholozsnyak/jbang-catalog/tree/feature/aws-lambda-templates"
}
},
"aliases": {
"cli": {
"script-ref": "https://repo1.maven.org/maven2/io/quarkus/quarkus-cli/2.6.1.Final/quarkus-cli-2.6.1.Final-runner.jar"
},
"qs": {
"script-ref": "https://repo1.maven.org/maven2/io/quarkus/quarkus-cli/2.6.1.Final/quarkus-cli-2.6.1.Final-runner.jar"
},
"quarkus": {
"script-ref": "https://repo1.maven.org/maven2/io/quarkus/quarkus-cli/2.6.1.Final/quarkus-cli-2.6.1.Final-runner.jar"
}
},
"templates": {
"q-aws-lambda-tf": {
"file-refs": {
"{filename}": "aws/aws-lambda.java.qute",
"generate-jar.sh": "aws/generate-jar.sh",
"generate-native-image.sh": "aws/generate-native-image.sh",
"application.properties": "aws/application.properties",
"lambda-aws.tf": "aws/lambda-aws.tf.qute"
},
"description": "Quarkus AWS Lambda template with Terraform template. Use the -Dnative-function flag to have native image based Terraform resources",
"properties": {
"tf-providers": {
"description": "If enabled extra Terraform related providers will be generated",
"default": false
},
"tf-provider.aws.version": {
"description": "Version of the AWS Terraform provider",
"default": "3.71.0"
},
"tf-provider.archive.version": {
"description": "Version of the Archive Terraform provider",
"default": "2.2.0"
},
"tf-provider.null.version": {
"description": "Version of the NULL Terraform provider",
"default": "3.1.0"
},
"tf-provider.aws.region": {
"description": "AWS Region",
"default": "eu-central-1"
},
"native-function": {
"description": "Generate native executable based lambda function or not",
"default": false
}
}
}
}
}