-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-variables.yml
More file actions
40 lines (40 loc) · 916 Bytes
/
example-variables.yml
File metadata and controls
40 lines (40 loc) · 916 Bytes
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
---
- key: DATABASE_URL
value: postgresql://user:pass@localhost:5432/mydb
variable_type: env_var
protected: true
masked: true
hidden: false
raw: false
environment_scope: production
description: Production database connection string
- key: API_KEY
value: sk_live_xxxxxxxxxxxxxxxx
variable_type: env_var
protected: true
masked: true
hidden: false
raw: true
environment_scope: '*'
description: Third-party API key
- key: SSL_CERTIFICATE
value: |
-----BEGIN CERTIFICATE-----
MIIDXTCCAkWgAwIBAgIJAKJ...
-----END CERTIFICATE-----
variable_type: file
protected: false
masked: false
hidden: false
raw: true
environment_scope: '*'
description: SSL certificate file
- key: DEBUG_MODE
value: 'false'
variable_type: env_var
protected: false
masked: false
hidden: false
raw: false
environment_scope: staging
description: Enable debug logging in staging