-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdoppler-template.yaml
More file actions
43 lines (37 loc) · 1.3 KB
/
doppler-template.yaml
File metadata and controls
43 lines (37 loc) · 1.3 KB
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
projects:
- name: 'data-parser' # Name may contain lowercase letters, spaces, numbers, hyphens, and underscores
description: 'Data-Parser for vZAU Website'
# List of totally customizable environments, e.g Test, Stage, QA, CI-CD
environments:
- name: 'Development' # Name may contain letters, spaces, numbers, hyphens, and underscores
slug: 'dev' # Slug may contain letters, numbers, hyphens, and underscores
configs:
- slug: 'dev' # First slug *must* match environment slug name
- slug: 'dev_matt'
- slug: 'dev_noah'
- slug: 'dev_tim'
- name: 'Staging'
slug: 'stg'
configs:
- slug: 'stg'
- name: 'Production'
slug: 'prd'
configs:
- slug: 'prd'
# Define secrets for each environment
secrets:
dev:
MONGO_URI: ''
REDIS_URI: '${api.dev.REDIS_URI}'
ZAU_API_KEY: '${api.dev.MICRO_ACCESS_KEY}'
ZAU_API_URL: ''
stg:
MONGO_URI: '${api.stg.MONGO_URI}'
REDIS_URI: '${api.stg.REDIS_URI}'
ZAU_API_KEY: '${api.stg.MICRO_ACCESS_KEY}'
ZAU_API_URL: ''
prd:
MONGO_URI: '${api.prd.MONGO_URI}'
REDIS_URI: '${api.prd.REDIS_URI}'
ZAU_API_KEY: '${api.prd.MICRO_ACCESS_KEY}'
ZAU_API_URL: ''