Skip to content

Commit

Permalink
Update codepipeline (#34)
Browse files Browse the repository at this point in the history
* Update `codepipeline` version

* Update `codepipeline` version

* Update `codepipeline` version

* Pin `aws` provider

* Pin `terraform` version
  • Loading branch information
aknysh authored May 29, 2019
1 parent 5c25e3e commit 5075528
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 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"
}

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}"
Expand Down Expand Up @@ -97,7 +108,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=tags/0.9.0"
name = "${var.name}"
namespace = "${var.namespace}"
stage = "${var.stage}"
Expand Down

0 comments on commit 5075528

Please sign in to comment.