-
Notifications
You must be signed in to change notification settings - Fork 14
/
manifest.yml
56 lines (53 loc) · 2.03 KB
/
manifest.yml
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
---
defaults: &defaults
buildpacks:
- https://github.com/cloudfoundry/apt-buildpack
- https://github.com/HashNuke/heroku-buildpack-elixir
memory: 512M
disk_quota: 2G
stack: cflinuxfs4
health-check-type: process
command: ./cloud_start.sh
applications:
- name: challenge-portal-dev
<<: *defaults
instances: 1
disk_quota: 6GB
env:
MIX_ENV: prod
STACK: heroku-22
HOST: challenge-portal-dev.app.cloud.gov
LOGIN_PRIVATE_KEY_PATH: dev_key.pem
LOGIN_PUBLIC_KEY_PATH: dev_cert.pem
LOGIN_REDIRECT_URL: https://challenge-portal-dev.app.cloud.gov/auth/result
LOGIN_IDP_AUTHORIZE_URL: https://idp.int.identitysandbox.gov/openid_connect/authorize
LOGIN_TOKEN_ENDPOINT: https://idp.int.identitysandbox.gov/api/openid_connect/token
LOGIN_CLIENT_ID: urn:gov:gsa:openidconnect.profiles:sp:sso:gsa:challenge_gov_portal_dev
- name: challenge-portal-stg
<<: *defaults
instances: 2
env:
MIX_ENV: prod
STACK: heroku-22
HOST: challenge-portal-staging.app.cloud.gov
LOGIN_PRIVATE_KEY_PATH: staging_key.pem
LOGIN_PUBLIC_KEY_PATH: staging_cert.pem
LOGIN_REDIRECT_URL: https://challenge-portal-staging.app.cloud.gov/auth/result
LOGIN_IDP_AUTHORIZE_URL: https://idp.int.identitysandbox.gov/openid_connect/authorize
LOGIN_TOKEN_ENDPOINT: https://idp.int.identitysandbox.gov/api/openid_connect/token
LOGIN_CLIENT_ID: urn:gov:gsa:openidconnect.profiles:sp:sso:gsa:challenge_portal_staging
- name: challenge-portal-production
<<: *defaults
instances: 2
memory: 1G
env:
MIX_ENV: prod
STACK: heroku-22
HOST: portal.challenge.gov
LOGIN_PRIVATE_KEY_PATH: production_key.pem
LOGIN_PUBLIC_KEY_PATH: production_cert.pem
LOGIN_REDIRECT_URL: https://portal.challenge.gov/auth/result
LOGIN_IDP_AUTHORIZE_URL: https://secure.login.gov/openid_connect/authorize
LOGIN_TOKEN_ENDPOINT: https://secure.login.gov/api/openid_connect/token
LOGIN_CLIENT_ID: urn:gov:gsa:openidconnect.profiles:sp:sso:gsa:challenge_portal_production
PUBLIC_ROOT_URL: https://www.challenge.gov