Skip to content

Releases: aws-samples/terraform-aws-multi-account-pipeline

1.6.1

25 Oct 19:58
29f8c97

Choose a tag to compare

Documentation updates.

1.6.0

25 Oct 19:44
f49f24a

Choose a tag to compare

Optional input to change pipeline to sequential deployment (Eg Dev -> Test -> Prod)

module "pipeline" {
  ... 
  accounts   = {
    "dev"  = "112233445566"
    "test" = "223344556677"
    "prod" = "334455667788"
  }
  sequential = ["dev", "test", "prod"]
}

1.5.9

01 Oct 11:48
7069a40

Choose a tag to compare

Added optional Codebuild overrides.

build_override = {
    directory       - "./terraform" 
    plan_buildspec  = file("./my_plan.yml")
    plan_image      = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
    apply_buildspec = file("./my_apply.yml")
    apply_image     = "hashicorp/terraform:latest"
  }

1.5.8

12 Aug 08:28
6ab615e

Choose a tag to compare

Update Terraform version to 1.8.0

1.5.7

17 Jul 05:42
c0d6ce5

Choose a tag to compare

Added support for pipeline SNS notifications.

notifications = {
    sns_topic   = aws_sns_topic.this.arn
    detail_type = "BASIC"
    events = [
      "codepipeline-pipeline-pipeline-execution-failed",
      "codepipeline-pipeline-pipeline-execution-succeeded"
    ]
  }

1.5.6

11 Jul 12:26
50d0801

Choose a tag to compare

Added optional input for CodeBuild VPC deployment.

vpc = {
    vpc_id             = "vpc-011a22334455bb66c",
    subnets            = ["subnet-011aabbcc2233d4ef"],
    security_group_ids = ["sg-001abcd2233ee4455"],
  }

1.5.5

20 Jun 04:57
1517a05

Choose a tag to compare

Upgraded tool versions

  • Terraform 1.7.0
  • tflint 0.55.0
  • tag-nag 0.7.9

1.5.4

12 Jun 19:53
7082bb8

Choose a tag to compare

Added module outputs.

1.5.3

16 Apr 07:27
4c503f7

Choose a tag to compare

  • fixed checkov version to 3.2.0
  • printed guidance for finding checkov reports

1.5.2

11 Apr 20:24
2dcc969

Choose a tag to compare

Upgrade tags default version to v0.5.8