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

Does Bitbucket Pipelines building .NET applications to deploy to AWS EC2 ?

ginukagpr September 14, 2020

Hi all,

I want to create Bitbucket Pipelines to deploy my .net 4.7 application (Umbraco) to AWS EC2 instance.
Anyone do that? Please advise.  

Thanks

1 answer

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

Hi @ginukagpr ,

you could follow a workflow in our .Net example .

For STEP Deploy to Production use aws-elasticbeanstalk-deploy pipe , if it's your case:

      - step:
          name: Deploy to Production
          deployment: Production
          trigger: manual
          script:
            - pipe: atlassian/aws-elasticbeanstalk-deploy:0.6.6
              variables:
                AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
                AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
                AWS_DEFAULT_REGION: $AWS_DEFAULT_REGION
                APPLICATION_NAME: 'your-app-name'
                ENVIRONMENT_NAME: 'Production'
                S3_BUCKET: 'app-source-s3-bucket'
                ZIP_FILE: 'application.zip'
                VERSION_LABEL: 'prod-0.1.$BITBUCKET_BUILD_NUMBER}

a  

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events