-
Notifications
You must be signed in to change notification settings - Fork 0
/
workflow-config.json.example
35 lines (35 loc) · 1.33 KB
/
workflow-config.json.example
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
// This is a JSON file, but we do ignore // comments, like this one.
// Please don't use C style /* */ comments, they won't work.
{
// Settings for BitBucket integration
"bitbucket": {
// BitBucket username
"username": "",
// The BitBucket app password created by following the instructions at
// https://confluence.atlassian.com/bitbucket/app-passwords-828781300.html
"password": "DO NOT PUT YOUR REAL PASSWORD HERE"
},
// GitHub API Token
"github_token": "",
// Settings for Azure development VM
"dev-vm": {
// The name of the development VM (e.g., "malte-dev"). Mandatory.
"name": "",
// The resource group of the development VM (e.g., "malte-rg"). Will default to "<name>-rg" if unset.
"resource-group": "",
// Use tmux for SSH sessions. Defaults to false if unset.
"use-tmux": false,
// The name of your Azure ID file. Example: If it's ~/.ssh/azure_id_rsa, just put in azure_id_rsa.
// (DO NOT put in the "~/.ssh".) Uses the default identity if unset.
"id-file": ""
},
// Settings for GCP development VM
"gcp-dev-vm": {
// The name of the development VM (e.g., "malte-dev"). Mandatory.
"name": "",
// The zone of the development VM (e.g., "us-west1-a"). Mandatory.
"zone": "",
// Use tmux for SSH sessions. Defaults to false if unset.
"use-tmux": false
}
}