From e37eba31cb9cce0fa05d8f381f870e32d74e948d Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Sat, 16 Nov 2024 09:19:01 +0100 Subject: [PATCH] Fix production_aws_private_bucket.yml --- .../templates/examples/production_aws_private_bucket.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/galaxy/files/templates/examples/production_aws_private_bucket.yml b/lib/galaxy/files/templates/examples/production_aws_private_bucket.yml index 81e62afa16ad..3086746dbacb 100644 --- a/lib/galaxy/files/templates/examples/production_aws_private_bucket.yml +++ b/lib/galaxy/files/templates/examples/production_aws_private_bucket.yml @@ -3,10 +3,10 @@ description: Setup access to a private AWS bucket using a secret access key. configuration: type: s3fs - bucket: "{{ bucket }}" - writable: "{{ writable }}" - secret: "{{ secret_key }}" - key: "{{ access_key }}" + bucket: "{{ variables.bucket }}" + writable: "{{ variables.writable }}" + secret: "{{ secrets.secret_key }}" + key: "{{ variables.access_key }}" variables: access_key: label: Access Key ID