Skip to content

Commit

Permalink
fix: remove dashes from tls atribute names (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonasr committed Apr 21, 2024
1 parent 9648f7f commit 3cb2e88
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 20 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ This file is used to list changes made in each version of the redisio cookbook.

## Unreleased

- Fix default `tls*` attribute names

## 7.1.0 - *2024-04-18*

- Add an option to manage all TLS related attributes
Expand Down
40 changes: 20 additions & 20 deletions attributes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -150,26 +150,26 @@
'minreplicastowrite' => nil,
'minreplicasmaxlag' => nil,
'breadcrumb' => true,
'tls-port' => nil,
'tls-cert-file' => nil,
'tls-key-file' => nil,
'tls-key-file-pass' => nil,
'tls-client-cert-file' => nil,
'tls-client-key-file' => nil,
'tls-client-key-file-pass' => nil,
'tls-dh-params-file' => nil,
'tls-ca-cert-file' => nil,
'tls-ca-cert-dir' => nil,
'tls-auth-clients' => nil,
'tls-replication' => nil,
'tls-cluster' => nil,
'tls-protocols' => nil,
'tls-ciphers' => nil,
'tls-ciphersuites' => nil,
'tls-prefer-server-ciphers' => nil,
'tls-session-caching' => nil,
'tls-session-cache-size' => nil,
'tls-session-cache-timeout' => nil,
'tlsport' => nil,
'tlscertfile' => nil,
'tlskeyfile' => nil,
'tlskeyfilepass' => nil,
'tlsclientcertfile' => nil,
'tlsclientkeyfile' => nil,
'tlsclientkeyfilepass' => nil,
'tlsdhparamsfile' => nil,
'tlscacertfile' => nil,
'tlscacertdir' => nil,
'tlsauthclients' => nil,
'tlsreplication' => nil,
'tlscluster' => nil,
'tlsprotocols' => nil,
'tlsciphers' => nil,
'tlsciphersuites' => nil,
'tlspreferserverciphers' => nil,
'tlssessioncaching' => nil,
'tlssessioncachesize' => nil,
'tlssessioncachetimeout' => nil,
}

# The default for this is set inside of the "install" recipe. This is due to the way deep merge handles arrays
Expand Down

0 comments on commit 3cb2e88

Please sign in to comment.