From b69a120f7d3098634786885164c7655bc9711636 Mon Sep 17 00:00:00 2001 From: aknysh Date: Tue, 28 May 2019 23:09:07 -0400 Subject: [PATCH 1/5] Update `codepipeline` version --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 829a595f..a5b2fc54 100644 --- a/main.tf +++ b/main.tf @@ -97,7 +97,7 @@ module "ecs_alb_service_task" { module "ecs_codepipeline" { enabled = "${var.codepipeline_enabled}" - source = "git::https://github.com/cloudposse/terraform-aws-ecs-codepipeline.git?ref=tags/0.8.0" + source = "git::https://github.com/cloudposse/terraform-aws-ecs-codepipeline.git?ref=fix-codebuild-arn" name = "${var.name}" namespace = "${var.namespace}" stage = "${var.stage}" From 6769be3c65c59bccf91c8bfa9eec3da01688d8ea Mon Sep 17 00:00:00 2001 From: aknysh Date: Wed, 29 May 2019 00:40:54 -0400 Subject: [PATCH 2/5] Update `codepipeline` version --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index a5b2fc54..0873ce22 100644 --- a/main.tf +++ b/main.tf @@ -97,7 +97,7 @@ module "ecs_alb_service_task" { module "ecs_codepipeline" { enabled = "${var.codepipeline_enabled}" - source = "git::https://github.com/cloudposse/terraform-aws-ecs-codepipeline.git?ref=fix-codebuild-arn" + source = "git::https://github.com/cloudposse/terraform-aws-ecs-codepipeline.git?ref=ref=tags/0.9.0" name = "${var.name}" namespace = "${var.namespace}" stage = "${var.stage}" From 39f748d52ddfa65f538e5327d9b7272c7561278c Mon Sep 17 00:00:00 2001 From: aknysh Date: Wed, 29 May 2019 00:41:58 -0400 Subject: [PATCH 3/5] Update `codepipeline` version --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 0873ce22..a0597227 100644 --- a/main.tf +++ b/main.tf @@ -97,7 +97,7 @@ module "ecs_alb_service_task" { module "ecs_codepipeline" { enabled = "${var.codepipeline_enabled}" - source = "git::https://github.com/cloudposse/terraform-aws-ecs-codepipeline.git?ref=ref=tags/0.9.0" + source = "git::https://github.com/cloudposse/terraform-aws-ecs-codepipeline.git?ref=tags/0.9.0" name = "${var.name}" namespace = "${var.namespace}" stage = "${var.stage}" From d7bf39718b37bf48cbefbcc0296b5e789f4a9cc0 Mon Sep 17 00:00:00 2001 From: aknysh Date: Wed, 29 May 2019 10:00:09 -0400 Subject: [PATCH 4/5] Pin `aws` provider --- main.tf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/main.tf b/main.tf index a0597227..50424406 100644 --- a/main.tf +++ b/main.tf @@ -1,3 +1,10 @@ +# Pin the `aws` provider +# https://www.terraform.io/docs/configuration/providers.html +# Any non-beta version >= 2.12.0 and < 2.13.0, e.g. 2.12.X +provider "aws" { + version = "~> 2.12.0" +} + module "default_label" { source = "git::https://github.com/cloudposse/terraform-terraform-label.git?ref=tags/0.2.1" name = "${var.name}" From 87f1cb4b1b6e9db12f1d84f604c7dd5e8d662629 Mon Sep 17 00:00:00 2001 From: aknysh Date: Wed, 29 May 2019 13:25:07 -0400 Subject: [PATCH 5/5] Pin `terraform` version --- main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.tf b/main.tf index 50424406..d6d33490 100644 --- a/main.tf +++ b/main.tf @@ -5,6 +5,10 @@ provider "aws" { version = "~> 2.12.0" } +terraform { + required_version = "~> 0.11.0" +} + module "default_label" { source = "git::https://github.com/cloudposse/terraform-terraform-label.git?ref=tags/0.2.1" name = "${var.name}"