You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I would like to host pipes in a private ECR repository.
I understand that I can access the images like so:
pipe: docker://my-ecr-repo/image:versionaws:
access-key: $AWS_ACCESS_KEY_ID
secret-key: $AWS_SECRET_ACCESS_KEY
I am wondering if there is an undocumented way to use OIDC instead.
@Georg Duemlein hi.
Pipes supports only public docker images.
For OIDC support check this pipe for implementation: aws-ecr-push-image
Regards, Igor
Is it correct that the `aws-ecr-push-image` example refers to using OIDC inside the pipe?
I figured I can use OIDC to pull a private ECR as a pipe like so:
- step:
name: 'PipeThing'
oidc: true
script:
- export AWS_ROLE_ARN=arn:aws:iam::123345:role/bitbucket-pipeline-role
- export AWS_WEB_IDENTITY_TOKEN_FILE=$(pwd)/web-identity-token
- echo $BITBUCKET_STEP_OIDC_TOKEN > $(pwd)/web-identity-token
- apt-get update && apt-get install -y awscli
- aws --version
- aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin 1234.dkr.ecr.us-somehwere-5.amazonaws.com
- pipe: docker:/my/image:lastest
Would it be possible to get a feature request for pipes to support OIDC for private pipes?
Though I am not yet convinced I understand fully the difference between a pipe and an image for a step.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.