diff --git a/README.md b/README.md index 1289f36..6924d53 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,9 @@ Terraform module to create Terraform drift, plan, and apply CodePipelines. ## Change Log +### 3.0.1 +- Added tags to `build-plan` CodeBuild project, which was missed in v3.0.0 release. + ### 3.0.0 - add output consisting of the ARN of SNS topic where CodePipeline and CodeBuild notifications are sent - remove use of `tf-module-sns-teams-relay` module diff --git a/drift-pipeline.tf b/drift-pipeline.tf index c13f19c..20efb6a 100644 --- a/drift-pipeline.tf +++ b/drift-pipeline.tf @@ -56,6 +56,7 @@ resource "aws_codebuild_project" "build-drift" { name = local.build_project_name_drift build_timeout = "10" service_role = aws_iam_role.build-role.arn + tags = var.global_tags artifacts { type = "CODEPIPELINE"