Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/complete/fixtures.us-east-2.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ repo_name = "terraform-aws-ecs-codepipeline"

branch = "master"

build_image = "aws/codebuild/docker:17.09.0"
build_image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"

build_compute_type = "BUILD_GENERAL1_SMALL"

Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ variable "badge_enabled" {

variable "build_image" {
type = string
default = "aws/codebuild/docker:17.09.0"
description = "Docker image for build environment, _e.g._ `aws/codebuild/docker:docker:17.09.0`"
default = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
description = "Docker image for build environment, https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-available.html"
}

variable "build_compute_type" {
Expand Down