Get started with Bitbucket Pipelines

Bitbucket Pipelines is an integrated CI/CD service built into Bitbucket Cloud. It allows you to automatically build, test, and even deploy your code based on a configuration file in your repository. Essentially, we create containers in the cloud for you. Inside these containers, you can run commands (like you might on a local machine) but with all the advantages of a fresh system, customized and configured for your needs. A pipeline is defined using a YAML file called bitbucket-pipelines.yml, which is located at the root of your repository. For more information on configuring a YAML file, refer to Configure bitbucket-pipelines.yml.

For more information on how to use Bitbucket Pipelines to automate your AWS deployment, check out this YouTube video tutorial.

Additional Help