Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

Commit ed49880

Browse files
committed
edits part 5 122320
1 parent 7624527 commit ed49880

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Git webhooks enable event-driven integration between Git services and external applications. This Quick Start deploys the HTTPS endpoints and code you can use to link your AWS and Git services with webhooks. After deploying the Quick Start, you can configure a webhook in your Git repository using these endpoints. With this integration in place, each time a Git user pushes a commit, your repository is automatically retrieved, zipped, and uploaded to an Amazon Simple Storage Service (Amazon S3) bucket. You can then configure AWS services such as AWS CodePipeline, AWS CodeBuild, and AWS CodeDeploy to use the S3 bucket as a source. In this way, you can build a continuous integration and continuous delivery (CI/CD) pipeline on the foundation this Quick Start deploys.
1+
Git webhooks enable event-driven integration between Git services and external applications. This Quick Start deploys the HTTPS endpoint and code you can use to configure webhooks linking your AWS and Git services. With this integration in place, each time a Git user pushes a commit, your repository is automatically retrieved, zipped, and uploaded to an Amazon Simple Storage Service (Amazon S3) bucket. You can then configure AWS services such as AWS CodePipeline, AWS CodeBuild, and AWS CodeDeploy to use the S3 bucket as a source. In this way, you can build a continuous integration and continuous delivery (CI/CD) pipeline on the foundation this Quick Start deploys.
22

33
This guide describes the components that are deployed by the Quick Start, and contains links to launch the AWS CloudFormation template that automates the deployment.
44

templates/git2s3.template.yaml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ Metadata:
2323
- QSS3BucketName
2424
- QSS3BucketRegion
2525
- QSS3KeyPrefix
26+
- Label:
27+
default: VPC configuration
28+
Parameters:
29+
- VPCId
30+
- VPCCidrRange
31+
- SubnetIds
32+
- ScmHostnameOverride
2633
ParameterLabels:
2734
AllowedIps:
2835
default: Allowed IP addresses
@@ -38,6 +45,14 @@ Metadata:
3845
default: Quick Start S3 bucket Region
3946
QSS3KeyPrefix:
4047
default: Quick Start S3 key prefix
48+
VPCId:
49+
default: VPC ID
50+
VPCCidrRange:
51+
default: VPC CIDR
52+
SubnetIds:
53+
default: Subnet IDs
54+
ScmHostnameOverride:
55+
default: Hostname override
4156
ExcludeGit:
4257
default: Exclude .git directory
4358
Parameters:
@@ -88,7 +103,7 @@ Parameters:
88103
Type: CommaDelimitedList
89104
Default: ''
90105
ScmHostnameOverride:
91-
Description: Host name to override the incoming JSON request.
106+
Description: Name to override the hostname in the header of a webhook JSON payload.
92107
Type: String
93108
Default: ''
94109
ExcludeGit:

0 commit comments

Comments
 (0)