-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpipeline_trigger.tf
78 lines (72 loc) · 1.77 KB
/
pipeline_trigger.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
resource "aws_cloudwatch_event_rule" "pipeline_trigger" {
name = "${var.project_name}-trigger"
description = "Rule for triggering CodePipeline from CodeCommit ${var.project_name} repo"
tags = local.tags
event_pattern = <<EOF
{
"source": ["aws.codecommit"],
"detail-type": [
"CodeCommit Repository State Change"
],
"resources": [
"arn:aws:codecommit:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:${var.project_name}"
],
"detail": {
"event": [
"referenceCreated",
"referenceUpdated"
],
"referenceType": [
"branch"
],
"referenceName": [
"${var.repo_default_branch}"
]
}
}
EOF
}
resource "aws_cloudwatch_event_target" "pipeline" {
rule = aws_cloudwatch_event_rule.pipeline_trigger.name
target_id = "TriggerPipeline-${aws_codepipeline.codepipeline.name}"
arn = aws_codepipeline.codepipeline.arn
role_arn = aws_iam_role.codepipeline_trigger.arn
}
resource "aws_iam_role" "codepipeline_trigger" {
name = "${var.project_name}-codepipeline_trigger"
tags = local.tags
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "events.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOF
}
resource "aws_iam_role_policy" "codepipeline_trigger" {
name = "${var.project_name}-codepipeline_trigger"
role = aws_iam_role.codepipeline_trigger.id
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"codepipeline:StartPipelineExecution"
],
"Resource": [
"${aws_codepipeline.codepipeline.arn}"
]
}
]
}
EOF
}