From 3a0364bc4f004a0519c640a602c40f595729eb79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Mej=C3=ADa?= Date: Tue, 17 Mar 2020 16:36:54 -0700 Subject: [PATCH] Update README to include config.ssl_ca_cert option --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4dfcfe2a..0fa03258 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,9 @@ Vault.configure do |config| # ENV["VAULT_SSL_PEM_CONTENTS_BASE64"] then ENV["VAULT_SSL_PEM_CONTENTS"] config.ssl_pem_contents = "-----BEGIN ENCRYPTED..." + # The path to the CA cert on disk to use for certificate verification, also reas as ENV["VAULT_CACERT"] + config.ssl_ca_cert = "/path/on/disk/ca_cert.pem" + # Use SSL verification, also read as ENV["VAULT_SSL_VERIFY"] config.ssl_verify = false