Skip to content

Commit

Permalink
Merge pull request #19155 from mvdbeek/fix_aws_file_source_template
Browse files Browse the repository at this point in the history
[24.1] Fix production_aws_private_bucket.yml
  • Loading branch information
mvdbeek authored Nov 22, 2024
2 parents c290421 + e37eba3 commit 7ab0c09
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7ab0c09

Please sign in to comment.