-
Notifications
You must be signed in to change notification settings - Fork 222
/
app.json
40 lines (40 loc) · 1.16 KB
/
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
{
"name": "Keycloak Deployment to Heroku",
"description": "Deployment of the Keycloak Identity and Access Management Solution to Heroku using a slightly adapted version of the official Docker container image",
"keywords": [
"identity",
"oauth",
"saml",
"keycloak",
"heroku"
],
"stack": "container",
"repository": "https://github.com/mieckert/keycloak-heroku",
"logo": "https://www.keycloak.org/resources/images/keycloak_logo_480x108.png",
"success_url": "/",
"env": {
"KEYCLOAK_USER": {
"description": "Initial Admin user name",
"value": "admin"
},
"KEYCLOAK_PASSWORD": {
"description": "Initial Admin password",
"value": "change_me"
},
"PROXY_ADDRESS_FORWARDING": {
"description": "Set to true since we will be running behind Heroku's load balancers",
"value": "true"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "Performance-M"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
]
}