-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
73 lines (64 loc) · 2.14 KB
/
main.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
resource "aws_codepipeline" "this" {
name = var.codepipeline_name
role_arn = aws_iam_role.codepipeline.arn
artifact_store {
location = var.artifacts_bucket_name
type = "S3"
#checkov:skip=CKV_AWS_219:Ensure Code Pipeline Artifact store is using a KMS CMK
#skipping since pipeline by default uses aws/s3
}
stage {
name = "Source"
action {
category = "Source"
name = "Source"
owner = "AWS"
provider = "CodeStarSourceConnection"
version = "1"
output_artifacts = ["source_artifact"]
configuration = {
BranchName = var.repository_branch
FullRepositoryId = "${var.repository_owner}/${var.repository_name}"
ConnectionArn = var.codestar_arn
}
}
}
stage {
name = "Build"
action {
name = "Build"
category = "Build"
owner = "AWS"
provider = "CodeBuild"
version = "1"
input_artifacts = ["source_artifact"]
output_artifacts = [local.codebuild_output_artifact_name]
configuration = {
"ProjectName" = module.codebuild.name
}
}
}
dynamic "stage" {
for_each = var.codepipeline_additional_stage
content {
name = stage.value["name"]
dynamic "action" {
for_each = stage.value.action
content {
name = action.value.name
category = action.value.category
owner = action.value.owner
provider = action.value.provider
version = action.value.version
input_artifacts = lookup(action.value, "input_artifacts", null)
output_artifacts = lookup(action.value, "output_artifacts", null)
configuration = lookup(action.value, "configuration", null)
role_arn = lookup(action.value, "role_arn", null)
run_order = lookup(action.value, "run_order", null)
region = lookup(action.value, "region", null)
namespace = lookup(action.value, "namespace", null)
}
}
}
}
}