Skip to content

Commit 58abc76

Browse files
committed
upgraded build to 5.0
1 parent 2e3e736 commit 58abc76

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

codebuild.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ resource "aws_codebuild_project" "this" {
1212

1313
environment {
1414
compute_type = "BUILD_GENERAL1_SMALL"
15-
image = "aws/codebuild/standard:3.0"
15+
image = "aws/codebuild/standard:5.0"
1616
type = "LINUX_CONTAINER"
1717
image_pull_credentials_type = "CODEBUILD"
1818

@@ -24,7 +24,7 @@ resource "aws_codebuild_project" "this" {
2424

2525
logs_config {
2626
cloudwatch_logs {
27-
group_name = "/aws/codebuild/${var.name}"
27+
group_name = "/aws/codebuild/${var.name}"
2828
}
2929
}
3030

@@ -110,4 +110,5 @@ data "aws_iam_policy_document" "codebuild" {
110110
"arn:aws:logs:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:log-group:/aws/codebuild/${var.name}:*"
111111
]
112112
}
113-
}
113+
}
114+

0 commit comments

Comments
 (0)