-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocal_config.sample.json
57 lines (46 loc) · 1.65 KB
/
local_config.sample.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"packer_aws_ami_filter_owner": "<AWS Account containing base AMI template>",
"packer_aws_ami_filter_name": "<Prefix of AMI to search for latest build of>",
"packer_aws_ami_ssh_username": "<Name of user to SSH as (typically ec2-user)>",
"packer_aws_ami_build_subnet": "<subnet id where ami will be built>",
"packer_aws_ami_users": "<comma separated list of account ids to grant access to the ami, if any>",
"cortex_url": "<Cortex URL>",
"cortex_seed_initial_username": "<Initial user to create>",
"cortex_crypto_secret": "<Generate a unique secret (see defaults.yml for details)>",
"cortex_api_key": "<Generate a unique key (see defaults.yml for details)>",
"cortex_auth_vouch": {
"enabled": "false",
"url": "<Vouch server>",
"logon_header": "THEHIVE_USER"
},
"cortex_auth_ldap": {
"enabled": "false",
"use_ssl": "true",
"servers": [ "<LDAP_SERVER:PORT>" ],
"bind_dn": "<BIND DN>",
"bind_pw": "<BIND PW>",
"search_base": "<LDAP search base>"
},
"thehive_url": "<The Hive URL>",
"thehive_seed_initial_username": "<Initial user to create>",
"thehive_crypto_secret": "<Generate a unique secret (see defaults.yml for details)>",
"thehive_cortex_servers": {
"cortex": {
"url": "http://127.0.0.1:9001/",
"key": "<Cortex API key (should match above)>"
}
},
"thehive_auth_vouch": {
"enabled": "false",
"url": "<Vouch server>",
"logon_header": "THEHIVE_USER"
},
"thehive_auth_ldap": {
"enabled": "false",
"use_ssl": "true",
"servers": [ "<LDAP_SERVER:PORT>" ],
"bind_dn": "<BIND DN>",
"bind_pw": "<BIND PW>",
"search_base": "<LDAP search base>"
}
}