» Resource: aws_codepipeline_webhook
Provides a CodePipeline Webhook.
» Example Usage
resource "aws_codepipeline" "bar" {
name = "tf-test-pipeline"
role_arn = "${aws_iam_role.bar.arn}"
artifact_store {
location = "${aws_s3_bucket.bar.bucket}"
type = "S3"
encryption_key {
id = "${data.aws_kms_alias.s3kmskey.arn}"
type = "KMS"
}
}
stage {
name = "Source"
action {
name = "Source"
category = "Source"
owner = "ThirdParty"
provider = "GitHub"
version = "1"
output_artifacts = ["test"]
configuration = {
Owner = "my-organization"
Repo = "test"
Branch = "master"
}
}
}
stage {
name = "Build"
action {
name = "Build"
category = "Build"
owner = "AWS"
provider = "CodeBuild"
input_artifacts = ["test"]
version = "1"
configuration = {
ProjectName = "test"
}
}
}
}
# A shared secret between GitHub and AWS that allows AWS
# CodePipeline to authenticate the request came from GitHub.
# Would probably be better to pull this from the environment
# or something like SSM Parameter Store.
locals {
webhook_secret = "super-secret"
}
resource "aws_codepipeline_webhook" "bar" {
name = "test-webhook-github-bar"
authentication = "GITHUB_HMAC"
target_action = "Source"
target_pipeline = "${aws_codepipeline.bar.name}"
authentication_configuration {
secret_token = "${local.webhook_secret}"
}
filter {
json_path = "$.ref"
match_equals = "refs/heads/{Branch}"
}
}
# Wire the CodePipeline webhook into a GitHub repository.
resource "github_repository_webhook" "bar" {
repository = "${github_repository.repo.name}"
name = "web"
configuration {
url = "${aws_codepipeline_webhook.bar.url}"
content_type = "form"
insecure_ssl = true
secret = "${local.webhook_secret}"
}
events = ["push"]
}
» Argument Reference
The following arguments are supported:
-
name
- (Required) The name of the webhook. -
authentication
- (Required) The type of authentication to use. One ofIP
,GITHUB_HMAC
, orUNAUTHENTICATED
. -
authentication_configuration
- (Optional) Anauth
block. Required forIP
andGITHUB_HMAC
. Auth blocks are documented below. -
filter
(Required) One or morefilter
blocks. Filter blocks are documented below. -
target_action
- (Required) The name of the action in a pipeline you want to connect to the webhook. The action must be from the source (first) stage of the pipeline. -
target_pipeline
- (Required) The name of the pipeline.
An authentication_configuration
block supports the following arguments:
-
secret_token
- (Optional) The shared secret for the GitHub repository webhook. Set this assecret
in yourgithub_repository_webhook
'sconfiguration
block. Required forGITHUB_HMAC
. -
allowed_ip_range
- (Optional) A valid CIDR block forIP
filtering. Required forIP
.
A filter
block supports the following arguments:
-
json_path
- (Required) The JSON path to filter on. -
match_equals
- (Required) The value to match on (e.g.refs/heads/{Branch}
). See AWS docs for details.
» Attributes Reference
In addition to all arguments above, the following attributes are exported:
-
id
- The CodePipeline webhook's ARN. -
url
- The CodePipeline webhook's URL. POST events to this endpoint to trigger the target.
» Import
CodePipeline Webhooks can be imported by their ARN, e.g.
$ terraform import aws_codepipeline_webhook.example arn:aws:codepipeline:us-west-2:123456789012:webhook:example