From 06e877f26b08d9a4eceb3e9e94bd1c1f28f6a339 Mon Sep 17 00:00:00 2001 From: James Rasell Date: Thu, 4 May 2023 15:29:36 +0200 Subject: [PATCH] docs: update artifact jobspec sshkey example path. (#17077) --- website/content/docs/job-specification/artifact.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/job-specification/artifact.mdx b/website/content/docs/job-specification/artifact.mdx index 6fc62cf9c..3f9b2f6f2 100644 --- a/website/content/docs/job-specification/artifact.mdx +++ b/website/content/docs/job-specification/artifact.mdx @@ -141,7 +141,7 @@ artifact { # Make sure that the system known hosts file is populated: # ssh-keyscan github.com | sudo tee -a /etc/ssh/ssh_known_hosts # https://github.com/hashicorp/go-getter/issues/55 - sshkey = "${base64encode(file("/etc/ssh/ssh_known_hosts"))}" + sshkey = "${base64encode(file("/path/to/private-key"))}" } } ```