You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I do have a databag with the items ca_file, cert_file and key_file. Chef-Client is able to generate these files correctly. However the default.json is missing the configuration for these files.
I have temporarily created this config using a file.
Hello Team.
Thanks for your support maintaining this.
I am having difficulty with my wrapper cookbook when configuring TLS for RPC. I have defined :
37 node.default['consul']['config']['ca_file'] = '/etc/consul/ssl/ca.crt'
38 node.default['consul']['config']['cert_file'] = '/etc/consul/ssl/consul.crt'
39 node.default['consul']['config']['key_file'] = '/etc/consul/ssl/consul.key'
40
41 node.default['consul']['config']['ui_dir'] = '/srv/consul-ui/current/dist'
42 node.default['consul']['config']['datacenter'] = 'aws-us-east'
43 node.default['consul']['config']['verify_outgoing'] = true
44 node.default['consul']['config']['verify_incoming'] = true
I do have a databag with the items ca_file, cert_file and key_file. Chef-Client is able to generate these files correctly. However the default.json is missing the configuration for these files.
I have temporarily created this config using a file.
$ cat files/default/ssl.json
{
"ca_file" : "/etc/consul/ssl/ca.crt",
"cert_file" : "/etc/consul/ssl/consul.crt",
"key_file" : "/etc/consul/ssl/consul.key",
"encrypt": "someNiceKey=="
}
Please suggest ideas to resolve this.
Thanks
Venkat.
The text was updated successfully, but these errors were encountered: