generated from ExamProCo/aws-bootcamp-cruddur-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodebuild.yaml
125 lines (124 loc) · 4.09 KB
/
codebuild.yaml
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
AWSTemplateFormatVersion: 2010-09-09
Description: |
Codebuild used for baking container images
- Codebuild Project
- Codebuild Project Role
Parameters:
LogGroupPath:
Type: String
Description: "The log group path for CodeBuild"
Default: "/cruddur/codebuild/bake-service"
LogStreamName:
Type: String
Description: "The log group path for CodeBuild"
Default: "backend-flask"
CodeBuildImage:
Type: String
Default: aws/codebuild/amazonlinux2-x86_64-standard:4.0
CodeBuildComputeType:
Type: String
Default: BUILD_GENERAL1_SMALL
CodeBuildTimeoutMins:
Type: Number
Default: 5
BuildSpec:
Type: String
Default: 'buildspec.yaml'
ArtifactBucketName:
Type: String
Resources:
CodeBuild:
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html
Type: AWS::CodeBuild::Project
Properties:
QueuedTimeoutInMinutes: !Ref CodeBuildTimeoutMins
ServiceRole: !GetAtt CodeBuildRole.Arn
# PrivilegedMode is needed to build Docker images
# even though we have No Artifacts, CodePipeline Demands both to be set as CODEPIPLINE
Artifacts:
Type: CODEPIPELINE
Environment:
ComputeType: !Ref CodeBuildComputeType
Image: !Ref CodeBuildImage
Type: LINUX_CONTAINER
PrivilegedMode: true
LogsConfig:
CloudWatchLogs:
GroupName: !Ref LogGroupPath
Status: ENABLED
StreamName: !Ref LogStreamName
Source:
Type: CODEPIPELINE
BuildSpec: !Ref BuildSpec
CodeBuildRole:
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: ['sts:AssumeRole']
Effect: Allow
Principal:
Service: [codebuild.amazonaws.com]
Version: '2012-10-17'
Path: /
Policies:
- PolicyName: !Sub ${AWS::StackName}S3ArtifactAccess
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- s3:*
Effect: Allow
Resource:
- !Sub arn:aws:s3:::${ArtifactBucketName}
- !Sub arn:aws:s3:::${ArtifactBucketName}/*
- PolicyName: !Sub ${AWS::StackName}ECRPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- ecr:BatchCheckLayerAvailability
- ecr:CompleteLayerUpload
- ecr:GetAuthorizationToken
- ecr:InitiateLayerUpload
- ecr:BatchGetImage
- ecr:GetDownloadUrlForLayer
- ecr:PutImage
- ecr:UploadLayerPart
Effect: Allow
Resource: "*"
- PolicyName: !Sub ${AWS::StackName}VPCPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- ec2:CreateNetworkInterface
- ec2:DescribeDhcpOptions
- ec2:DescribeNetworkInterfaces
- ec2:DeleteNetworkInterface
- ec2:DescribeSubnets
- ec2:DescribeSecurityGroups
- ec2:DescribeVpcs
Effect: Allow
Resource: "*"
- Action:
- ec2:CreateNetworkInterfacePermission
Effect: Allow
Resource: "*"
- PolicyName: !Sub ${AWS::StackName}Logs
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Effect: Allow
Resource:
- !Sub arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:${LogGroupPath}*
- !Sub arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:${LogGroupPath}:*
Outputs:
CodeBuildProjectName:
Description: "CodeBuildProjectName"
Value: !Ref CodeBuild