-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
44 lines (44 loc) · 964 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
39
40
41
42
43
44
{
"name": "Vault Server",
"description": "Deploy a Vault server to Heroku",
"repository": "https://github.com/eshishkin/heroku-vault-starter",
"keywords": ["vault"],
"buildpacks": [
{
"url": "https://github.com/eshishkin/heroku-buildpack-vault.git"
},
{
"url": "https://github.com/pallavkothari/heroku-buildpack-nginx"
}
],
"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"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"as": "database",
"options": {
"version": "12"
}
}
],
"scripts": {
"postdeploy": "psql ${DATABASE_URL} -q -f vault_kv_storage_table.sql"
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}