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

jq URL change; add ackrc #267

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .ackrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--ignore-dir=graphics
2 changes: 1 addition & 1 deletion registration-authorities/acme-for-cas.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ To enable CA, run:

To inspect the root and intermediate CA, you need to have the following dependencies installed:
* [step](https://smallstep.com/cli/)
* [jq](https://stedolan.github.io/jq/)
* [jq](https://jqlang.github.io/jq/)

Run:

Expand Down
2 changes: 1 addition & 1 deletion step-ca/registration-authority-ra-mode.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ Then we'll configure `step-ca`'s RA mode to use Vault to sign certificates.

* [`step-ca`](https://smallstep.com/docs/step-ca/installation)
* A [Hashicorp Vault](https://learn.hashicorp.com/tutorials/vault/getting-started-deploy) server
* The [`jq`](https://stedolan.github.io/jq/download/) tool to parse JSON output
* The [`jq`](https://jqlang.github.io/jq/) tool to parse JSON output

### Creating a Vault PKI

Expand Down
2 changes: 1 addition & 1 deletion step-cli/basic-crypto-operations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ To inspect the certificate you just made, run:
to: 2021-09-02T20:48:40Z`}
</CodeBlock>

You can get a certificate in JSON format by calling [`step certificate inspect`](./reference/certificate/inspect) with `--format json`. This example [uses jq](https://stedolan.github.io/jq/) to parse the JSON and extract a specific value:
You can get a certificate in JSON format by calling [`step certificate inspect`](./reference/certificate/inspect) with `--format json`. This example [uses jq](https://jqlang.github.io/jq/) to parse the JSON and extract a specific value:

```shell-session nocopy
$ step certificate inspect example.com.crt --format json | jq -r .validity.end
Expand Down