Skip to content

Commit

Permalink
Update field description text
Browse files Browse the repository at this point in the history
  • Loading branch information
stevendpclark committed Sep 25, 2024
1 parent f96e89e commit e2c2074
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions builtin/logical/pki/path_tidy.go
Original file line number Diff line number Diff line change
Expand Up @@ -587,12 +587,12 @@ func pathConfigAutoTidy(b *backend) *framework.Path {
},
"min_startup_backoff_duration": {
Type: framework.TypeInt,
Description: `The minimum amount of time auto-tidy will be delayed after startup in seconds`,
Description: `The minimum amount of time in seconds auto-tidy will be delayed after startup`,
Required: true,
},
"max_startup_backoff_duration": {
Type: framework.TypeInt,
Description: `The maximum amount of time auto-tidy will be delayed after startup in seconds`,
Description: `The maximum amount of time in seconds auto-tidy will be delayed after startup`,
Required: true,
},
"interval_duration": {
Expand Down Expand Up @@ -693,12 +693,12 @@ func pathConfigAutoTidy(b *backend) *framework.Path {
},
"min_startup_backoff_duration": {
Type: framework.TypeDurationSecond,
Description: `The minimum amount of time auto-tidy will be delayed after startup in seconds.`,
Description: `The minimum amount of time in seconds auto-tidy will be delayed after startup.`,
Default: int(defaultTidyConfig.MinStartupBackoff.Seconds()),
},
"max_startup_backoff_duration": {
Type: framework.TypeDurationSecond,
Description: `The maximum amount of time auto-tidy will be delayed after startup in seconds.`,
Description: `The maximum amount of time in seconds auto-tidy will be delayed after startup.`,
Default: int(defaultTidyConfig.MaxStartupBackoff.Seconds()),
},
"interval_duration": {
Expand Down
4 changes: 2 additions & 2 deletions ui/tests/helpers/openapi/expected-secret-attrs.js
Original file line number Diff line number Diff line change
Expand Up @@ -1408,12 +1408,12 @@ const pki = {
},
minStartupBackoffDuration: {
editType: 'ttl',
helpText: 'The minimum amount of time auto-tidy will be delayed after startup in seconds.',
helpText: 'The minimum amount of time in seconds auto-tidy will be delayed after startup.',
fieldGroup: 'default',
},
maxStartupBackoffDuration: {
editType: 'ttl',
helpText: 'The maximum amount of time auto-tidy will be delayed after startup in seconds.',
helpText: 'The maximum amount of time in seconds auto-tidy will be delayed after startup.',
fieldGroup: 'default',
},
issuerSafetyBuffer: {
Expand Down
4 changes: 2 additions & 2 deletions website/content/api-docs/secret/pki/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4524,10 +4524,10 @@ The below parameters are in addition to the regular parameters accepted by the
to Vault so as not to impact Vault performance.

- `min_startup_backoff_duration` `(string: "5m")` - The minimum amount of time auto-tidy
will be delayed after startup in seconds. Defaults to 5 minutes.
will be delayed after startup. Defaults to 5 minutes.

- `max_startup_backoff_duration` `(string: "15m")` - The maximum amount of time auto-tidy
will be delayed after startup in seconds. Defaults to 15 minutes.
will be delayed after startup. Defaults to 15 minutes.

- `publish_stored_certificate_count_metrics` `(bool: false)` - When enabled,
publishes the value computed by `maintain_stored_certificate_counts` to
Expand Down

0 comments on commit e2c2074

Please sign in to comment.