Reputation: 11
I am currently looking to create a CI/CD workflow in AWS using AWS CodePipeline using AWS CodeBuild and AWS CloudFormation with Bitbucket Cloud as the SCM. I am looking to implement two pipelines for now in this workflow:
What is it I am looking for?
I am looking for:
feat/**
PS: We are not looking to use bitbucket pipelines for various reasons such as limited number of triggers, not possible to skip certain manual steps in the pipeline, conditional checks on the outcome of certain steps on the pipeline and costs making it unsuitable.
Any pointers or examples on this would be highly appreciated.
Upvotes: 0
Views: 1874
Reputation: 75
Check this out: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html
You can use codestar connection for bitbucket: Example:
AWSTemplateFormatVersion: 2010-09-09
Resources:
SampleConnection:
Type: 'AWS::CodeStarConnections::Connection'
Properties:
ConnectionName: MyConnection
ProviderType: Bitbucket
Tags:
- Key: Project
Value: ProjectB
Upvotes: 1