I would like to pull from an AWS S3 bucket and use OIDC to authenticate as part of my pipeline. Something like this:
- step: &pullflutterbuild
name: Pull Flutter Build
oidc: true
script:
- apt-get update && apt-get install -y awscli
- export VERSION = "test"
- mkdir flutterBuild
- aws s3 cp "s3://bucket/${VERSION}" ./flutterBuild --recursive
artifacts:
- flutterBuild/**
The documentation around OIDC with AWS seems to be very lacking, is this possible? Is it supported?