diff --git a/website/content/docs/concepts/host-discovery/gcp.mdx b/website/content/docs/concepts/host-discovery/gcp.mdx index 4b330635e7..0d8adcb64e 100644 --- a/website/content/docs/concepts/host-discovery/gcp.mdx +++ b/website/content/docs/concepts/host-discovery/gcp.mdx @@ -49,7 +49,11 @@ Boundary uses the service account associated with the VM instance to authenticat If you downloaded the private key from GCP, it may contain extra `/n` characters that cause an error. -You can use `jq` to remove the extra `/n` characters. +You can use the `jq` utility to remove the extra `/n` characters. For example: + +```shell-session +$ jq -r '.private_key' my-gcp-private-key.json +```