Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,190
Community Members
 
Community Events
184
Community Groups

Deploy to AWS S3 only changed lambda functions

Edited

Hello, 

I am using serverless deploy to deploy my code to AWS S3. I want to deploy only changed lambda function using bitbucket pipelines not all the lambda functions.

How can I do this ?

3 answers

We came up with the following step to build just changed folders in our monorepo:

 

Assuming the folder structure is:

- src/
- folder1-etl-handler-py/
- build.sh
- folder2-etl-handler-py/
- build.sh

 

- step:
name: Build and package
script:
- apt-get update && apt-get install -y zip awscli
- echo "Building and packaging lambda function in $AWS_DEFAULT_REGION"
- git diff --name-only HEAD HEAD~1 | grep "src/folder1-etl-handler-py" && (cd src/folder1-etl-handler-py && ./deploy.sh)
- git diff --name-only HEAD HEAD~1 | grep "src/folder2-etl-handler-py" && (cd src/folder2-etl-handler-py && ./deploy.sh)

@Halyna Berezovska your suggestion doesn't seem to answer @Vipul_Panchal question. If the repository has multiple functions how do you deploy those who has been affected.

0 votes
Halyna Berezovska
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Nov 13, 2020

@Vipul_Panchal you can use aws s3 sync command or just use the appropriate pipe (look at https://bitbucket.org/atlassian/aws-s3-deploy/src/master/)

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events