Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix disableIssuedAtCheck documentation #342

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions step-ca/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ the `--password-file` flag accepts
"enabled": false
},
"authority": {
"disableIssuedAtCheck": false,
"claims": {
"minTLSCertDuration": "5m",
"maxTLSCertDuration": "24h",
Expand Down Expand Up @@ -251,6 +252,8 @@ the `--password-file` flag accepts

- **template**: default ASN1DN values for new certificates. See [Templates](./templates.mdx).

- **disableIssuedAtCheck**: ☠️ disable a check verifying that provisioning tokens must be issued after the CA has booted. This claim is one prevention against token reuse. The default value is false. Do not change this unless you know what you are doing.

- **claims**: default validation for requested attributes in the certificate request. Can be overridden by similar claims objects defined by individual provisioners.

- **minTLSCertDuration**: do not allow certificates with a duration less than this value.
Expand All @@ -277,8 +280,6 @@ the `--password-file` flag accepts

- **enableSSHCA**: enable this provisioner to generate SSH Certificates. The default value is false.

- **disableIssuedAtCheck**: ☠️ disable a check verifying that provisioning tokens must be issued after the CA has booted. This claim is one prevention against token reuse. The default value is false. Do not change this unless you know what you are doing.

- **provisioners**: list of certificate [Provisioners](./provisioners.mdx). Each provisioner has a name, associated authentication attributes, and an optional claims attribute that overrides any values set in the global claims directly underneath authority. The [`step ca provisioner`](../step-cli/reference/ca/provisioner) command group can add, modify, and remove provisioners. See [Provisioners](./provisioners.mdx).

- **claims**: Each provisioner can override the authority-wide `claims` settings. See the authority's **claims** section above for a complete list of options.
Expand Down