Skip to content

Commit

Permalink
Update the puppetdb_ssl_verify setting.
Browse files Browse the repository at this point in the history
The opposite of False in this case is not True, but the location of the CA file.
  • Loading branch information
rnelson0 authored Mar 12, 2017
1 parent 9c0f67c commit 7c3434d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ class { 'puppetboard':
puppetdb_host => 'puppetdb.example.com',
puppetdb_port => '8081',
puppetdb_key => "${ssl_dir}/private_keys/${puppetboard_certname}.pem",
puppetdb_ssl_verify => true,
puppetdb_ssl_verify => "${ssl_dir}/certs/ca.pem",
puppetdb_cert => "${ssl_dir}/certs/${puppetboard_certname}.pem",
}
```
Expand All @@ -253,7 +253,7 @@ class { 'puppetboard':
puppetdb_host => 'puppetdb.example.com',
puppetdb_port => '8081',
puppetdb_key => "${ssl_dir}/private_keys/${puppetboard_certname}.pem",
puppetdb_ssl_verify => true,
puppetdb_ssl_verify => "${ssl_dir}/certs/ca.pem",
puppetdb_cert => "${ssl_dir}/certs/${puppetboard_certname}.pem",
}
```
Expand Down

0 comments on commit 7c3434d

Please sign in to comment.