forked from sous-chefs/hashicorp-vault
-
Notifications
You must be signed in to change notification settings - Fork 4
/
default.rb
27 lines (22 loc) · 1018 Bytes
/
default.rb
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
#
# Cookbook: hashicorp-vault
# License: Apache 2.0
#
# Copyright 2015-2016, Bloomberg Finance L.P.
#
default['hashicorp-vault']['gems'] = {
vault: '0.4.0',
}
default['hashicorp-vault']['service_name'] = 'vault'
default['hashicorp-vault']['service_user'] = 'vault'
default['hashicorp-vault']['service_group'] = 'vault'
default['hashicorp-vault']['version'] = '1.8.5'
default['hashicorp-vault']['archive_url_root'] = 'releases.hashicorp.com'
default['hashicorp-vault']['enterprise'] = false
default['hashicorp-vault']['use_internal_repos'] = false
default['hashicorp-vault']['config']['path'] = '/etc/vault/vault.json'
default['hashicorp-vault']['config']['license_path'] = '/etc/vault/vault_license.hclic'
default['hashicorp-vault']['config']['address'] = '127.0.0.1:8200'
default['hashicorp-vault']['config']['log_level'] = 'info'
default['hashicorp-vault']['config']['tls_cert_file'] = '/etc/vault/ssl/certs/vault.crt'
default['hashicorp-vault']['config']['tls_key_file'] = '/etc/vault/ssl/private/vault.key'