forked from StratusGrid/terraform-aws-lambda-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiam-codepipeline-lambda.tf
More file actions
67 lines (64 loc) · 1.45 KB
/
Copy pathiam-codepipeline-lambda.tf
File metadata and controls
67 lines (64 loc) · 1.45 KB
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
### CODEPIPELINE LAMBDA IAM ROLE ###
resource "aws_iam_role" "lambda_codepipeline" {
name = "${var.name}-codepipeline"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "codepipeline.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOF
}
data "aws_iam_policy_document" "lambda_codepipeline" {
statement {
actions = [
"s3:GetObject",
"s3:GetObjectVersion",
"s3:GetBucketVersioning",
"s3:PutObject",
"s3:*"
]
resources = [
"arn:aws:s3:::${var.artifact_store_bucket_name}",
"arn:aws:s3:::${var.artifact_store_bucket_name}/*"
]
}
statement {
actions = [
"codebuild:BatchGetBuilds",
"codebuild:StartBuild"
]
resources = [ "*"
]
}
statement {
actions = [
"codedeploy:CreateDeployment",
"codedeploy:GetApplication",
"codedeploy:GetApplicationRevision",
"codedeploy:GetDeployment",
"codedeploy:GetDeploymentConfig",
"codedeploy:RegisterApplicationRevision"
]
resources = [ "*"
]
}
statement {
actions = [ "codestar-connections:UseConnection"
]
resources = [ var.codestar_connection_arn
]
}
}
resource "aws_iam_role_policy" "lambda_codepipeline" {
name = "${var.name}_codepipeline_policy"
role = aws_iam_role.lambda_codepipeline.id
policy = data.aws_iam_policy_document.lambda_codepipeline.json
}