I am running an S3-compatible object store called MinIO and would like to upload to it from a bitbucket pipeline. Do any of the existing pipes allow for defining the S3 API location instead of an AWS region? If not, what would be the most effective way to implement this in a pipeline?
Figured out the answer. You can use the aws-s3-deploy pipe and then add the endpoint URL in the EXTRA_ARGS variable.
- pipe: atlassian/aws-s3-deploy:1.1.0
variables:
EXTRA_ARGS: --endpoint-url https://my_api
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.