A Concourse CI resource to get latest files in a s3 bucket.
bucket
: s3 bucket namebucket_subfolder:
: If files are in a subfolder, specify it here (files/
)filter
: grep format to filter out filesaws_access_key_id
: AWS access Key IDaws_secret_access_key
: Aws secret access keyaws_default_region
: aws region
resource_types:
- name: simple-s3
type: docker-image
source:
repository: splatform/concourse-simple-s3-resource
tag: latest
resources:
- name: latest
type: simple-s3
source:
bucket: "test"
jobs:
- name: get-it
plan:
- get: latest
trigger: true
- task: work
config:
run:
....
Checks the remote server for new versions.
Downloads the latest uploaded file from the bucket.