From 527671dedbbebc3829bf690e77f45dab8e088d60 Mon Sep 17 00:00:00 2001 From: Thomas Wunderlich Date: Mon, 7 Nov 2022 15:04:02 +0000 Subject: [PATCH] backport of commit 282d8ba2a236e96b4783e6fbba8e87855050bb34 --- website/content/docs/job-specification/artifact.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/docs/job-specification/artifact.mdx b/website/content/docs/job-specification/artifact.mdx index 09966704bfd..a87b46e3d2e 100644 --- a/website/content/docs/job-specification/artifact.mdx +++ b/website/content/docs/job-specification/artifact.mdx @@ -210,7 +210,7 @@ This example uses path-based notation on a publicly-accessible bucket: ```hcl artifact { - source = "my-bucket-example.s3-us-west-2.amazonaws.com/my_app.tar.gz" + source = "s3://my-bucket-example.s3-us-west-2.amazonaws.com/my_app.tar.gz" } ``` @@ -240,7 +240,7 @@ Alternatively you can use virtual hosted style: ```hcl artifact { - source = "my-bucket-example.s3-eu-west-1.amazonaws.com/my_app.tar.gz" + source = "s3://my-bucket-example.s3-eu-west-1.amazonaws.com/my_app.tar.gz" } ```