-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
38 lines (38 loc) · 818 Bytes
/
app.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
{
"name": "vault server",
"description": "deploy a dev vault server to heroku",
"repository": "https://github.com/gpmidi/heroku-vault",
"keywords": ["vault", "server"],
"stack": "container",
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "13"
}
}
],
"env": {
"VAULT_UNSEAL_KEY": {
"description": "Vault unseal key",
"required": false,
"value": "to-be-overriden"
},
"ENABLE_UI": {
"description": "Should Vault UI be enabled",
"required": true,
"value": "false"
},
"VAULT_CLUSTER_ADDR": {
"description": "External URL",
"required": true,
"value": "https://NAME.herokuapp.com:443"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
}
}
}