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

Pass a paramater to a step definition

locky April 14, 2020

I have quite a few repeated steps in multiple branches where only one or two variables are different:

 - step: 
name: Deploy to S3
deployment: staging <- Different
script:
-
pipe: atlassian/aws-s3-deploy:0.2.4
variables:
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
AWS_DEFAULT_REGION: 'ap-southeast-2'
S3_BUCKET: 'xxx-xxx-staging' <- Different
ACL: 'public-read' LOCAL_PATH: 'build'
DELETE_FLAG: 'true'

Can I define that step as a definition with 2 variables passed as params?

2 answers

0 votes
Sebastián Jorquera February 5, 2021

Hi @locky !

 

Did you find any answer? I'm stucked in the same :(

0 votes
Oleksandr Kyrdan
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 16, 2020

Hi @locky ,

good question, thank you!

aws-s3-deploy pipe provides default variables for AWS credentials:

You just needed to setup Repository variables 
Some details provided in the variables section of the README:

AWS_ACCESS_KEY_ID (**)
AWS_SECRET_ACCESS_KEY (**)
AWS_DEFAULT_REGION (**)

(**) = required variable. If this variable is configured as a repository, account or environment variable, it doesn’t need to be declared in the pipe as it will be taken from the context. It can still be overridden when using the pipe.

Other variables should be provided.

so your pipe simplified:

 - step: 
name: Deploy to S3
deployment: staging
script:
-
pipe: atlassian/aws-s3-deploy:0.2.4
variables:
S3_BUCKET: 'xxx-xxx-staging'
ACL: 'public-read' LOCAL_PATH: 'build'
DELETE_FLAG: 'true'

 

Cheers,

Alex

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events