diff --git a/examples/complete/fixtures.us-east-2.tfvars b/examples/complete/fixtures.us-east-2.tfvars index 2a96301..b164db5 100644 --- a/examples/complete/fixtures.us-east-2.tfvars +++ b/examples/complete/fixtures.us-east-2.tfvars @@ -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" diff --git a/examples/complete/variables.tf b/examples/complete/variables.tf index 6f48af7..b3ffb83 100644 --- a/examples/complete/variables.tf +++ b/examples/complete/variables.tf @@ -143,7 +143,7 @@ variable "branch" { variable "build_image" { type = string - description = "Docker image for build environment, _e.g._ `aws/codebuild/docker:docker:17.09.0`" + description = "Docker image for build environment, _e.g._ `amazonlinux2-x86_64-standard:5.0`" } variable "build_compute_type" { diff --git a/variables.tf b/variables.tf index b3d3747..d7e259f 100644 --- a/variables.tf +++ b/variables.tf @@ -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" {