-
Notifications
You must be signed in to change notification settings - Fork 3
/
terraform.tf
101 lines (88 loc) · 1.87 KB
/
terraform.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
provider "aws" {
region = "us-east-1"
}
resource "aws_iam_role" "build" {
name = "slow-build"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "codebuild.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOF
}
resource "aws_iam_role_policy" "build" {
role = "${aws_iam_role.build.name}"
policy = <<POLICY
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Resource": [
"*"
],
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
]
}
]
}
POLICY
}
resource "aws_ecr_repository" "environments" {
name = "build-image"
}
resource "aws_ecr_repository_policy" "environments" {
repository = "${aws_ecr_repository.environments.name}"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "CodeBuildAccess",
"Effect": "Allow",
"Principal": {
"Service": "codebuild.amazonaws.com"
},
"Action": [
"ecr:GetDownloadUrlForLayer",
"ecr:BatchGetImage",
"ecr:BatchCheckLayerAvailability"
]
}
]
}
EOF
}
output "repository_url" {
value = "${aws_ecr_repository.environments.repository_url}"
}
resource "aws_codebuild_project" "build" {
name = "slow-build"
description = "A slow building CodeBuild project."
build_timeout = "5"
service_role = "${aws_iam_role.build.arn}"
artifacts {
type = "NO_ARTIFACTS"
}
source {
type = "GITHUB"
location = "https://github.com/FindAPattern/cloud-build-custom-environment.git"
git_clone_depth = 1
}
environment {
compute_type = "BUILD_GENERAL1_SMALL"
image = "${aws_ecr_repository.environments.repository_url}:latest"
type = "LINUX_CONTAINER"
}
}