Skip to content

Commit

Permalink
updates README and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
luispresuelVenafi committed Mar 5, 2024
1 parent df3e989 commit bb796c3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.13.0 (February 29, 2023)
* Enables adding a custom timeout for requests by fixing bug below
* Fixes bug for current `server_timeout` role attribute

# v0.12.1 (January 19, 2023)
* Added `ignore_local_storage` and `min_cert_time_left` new attributes at `issue` path, which
bypasses `prevent-reissue-local` feature, if enabled, and requests the certificate, and handles
Expand Down
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,25 @@ Venafi secrets engine:
single Venafi secret. If `zone` is not specified by the role, the `zone` specified by
the Venafi secret applies.

:pushpin: **NOTE**: You can use `server_timeout` that in order to overwrite default server
timeout. Default is 180 seconds. Applicable to both TLSPDC (TPP) and TLSPC (VaaS).
This attribute will have the following behaviors for TLSPDC and TLSPC:
- TLSPDC: During enrollment, http client timeout will use the defined `server_timeout` for every request.
Also it will be used for TPP request attribute `WorkToDoTimeout` which will override the waiting
for set CA's in Policy to finish issuance.
- TLSPC: During enrollment, http client timeout will use the defined `server_timeout` for every request.
Also it will be used for inner VCert retry logic to pickup certificate (as moment of adding this information
180 secs)

Example usage:
```
vault write venafi-pki/roles/tpp \
venafi_secret=tpp \
server_timeout="200s"
Success! Data written to: venafi-pki/roles/tpp
```


## Usage

After the Venafi secrets engine is configured and a user/machine has a Vault
Expand Down

0 comments on commit bb796c3

Please sign in to comment.