From 64b116a75199e7d9a0535f6f54fa9525be6cc5c2 Mon Sep 17 00:00:00 2001 From: stellarsquall Date: Wed, 29 Jan 2025 22:16:26 +0000 Subject: [PATCH] backport of commit c1a6286447f52d4ef78fd551e6c8d42b54b4ae49 --- website/content/docs/concepts/host-discovery/gcp.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 +```