From 72bcf97820b1bda39e229d0c039892f4326491a7 Mon Sep 17 00:00:00 2001 From: Christopher Hunter Date: Thu, 27 Jul 2023 12:52:31 -0400 Subject: [PATCH] docs: use variable func instead of strings in s3 example --- TILE_AUTHOR_GUIDE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TILE_AUTHOR_GUIDE.md b/TILE_AUTHOR_GUIDE.md index 633b38cea..2beda40a4 100644 --- a/TILE_AUTHOR_GUIDE.md +++ b/TILE_AUTHOR_GUIDE.md @@ -409,8 +409,8 @@ release_sources: bucket: "some-bucket" id: "legacy-storage" # (optional) the default ID for this type is the value of bucket region: "some-region" - access_key_id: "some-access-key-id" - secret_access_key: "some-secret-access-key" + access_key_id: $(variable "access_key_id") + secret_access_key: $(variable "secret_access_key") path_template: "some-path-template/{{.Name}}/{{.Name}}-{{.Version}}-{{.StemcellOS}}-{{.StemcellVersion}}.tgz" ```