Skip to content

Commit

Permalink
more images
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Forsyth committed Jun 27, 2018
1 parent 662539b commit a669063
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 35 deletions.
Binary file added images/create-pipeline.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/pipeline-ui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added prep/choose-codecommit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added prep/choose-repo-and-branch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions prep/iam-cfnrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Resources:
CFNRole:
Type: AWS::IAM::Role
Properties:
RoleName: pg23-cloudformation-role
AssumeRolePolicyDocument:
Statement:
- Action: ['sts:AssumeRole']
Expand Down
30 changes: 0 additions & 30 deletions prep/iam-codebuildrole.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion prep/iam-pipelinerole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Resources:
PipelineRole:
Type: AWS::IAM::Role
Properties:
RoleName: pg23pipeline-role
RoleName: pg23-codepipeline-role
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Expand Down
14 changes: 10 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,17 @@ You should now see an indicator in the top right showing that you are currently

### Creating the pipeline

Next we need to navigate to the CodePipeline user interface
Next we need to navigate to the CodePipeline user interface.
![](images/navigate-to-codepipeline.png)

Click the "Create Pipeline" button.
Click the "Create Pipeline" button. If there are no pipelines listed you'll see a getting started screen instead so just click "Get started" to get to the next step

![](images/pipeline-ui.png)

You now need to give your pipeline a name - this needs to be unique so try and follow convention e.g. firstnamelastinitial-pg23-pipeline (e.g. paulf-pg23-pipeline)

![](images/create-pipeline.png)

Click the "Next Step" button to continue

### Define the source
Expand All @@ -66,9 +70,11 @@ The first step in our pipeline is to grab our source code. In our case this is p

Choose CodeCommit.

Pick the repository "pg23repo"
![](images/choose-codecommit.png)

Pick the repository "pg23repo" and the branch master

Pick the branch "master"
![](images/choose-repo-and-branch.png)

Leave the "Change detection options" at their default - for CodeCommit and s3 this will use CloudWatch events to detect changes in order to trigger the pipeline, github will use webhooks.

Expand Down

0 comments on commit a669063

Please sign in to comment.