diff --git a/examples/complete/versions.tf b/examples/complete/versions.tf index 5947f14f..cd57caa7 100644 --- a/examples/complete/versions.tf +++ b/examples/complete/versions.tf @@ -6,10 +6,6 @@ terraform { source = "hashicorp/aws" version = ">= 2.0" } - template = { - source = "hashicorp/template" - version = ">= 2.0" - } null = { source = "hashicorp/null" version = ">= 2.0" diff --git a/examples/with_cognito_authentication/versions.tf b/examples/with_cognito_authentication/versions.tf index 5947f14f..cd57caa7 100644 --- a/examples/with_cognito_authentication/versions.tf +++ b/examples/with_cognito_authentication/versions.tf @@ -6,10 +6,6 @@ terraform { source = "hashicorp/aws" version = ">= 2.0" } - template = { - source = "hashicorp/template" - version = ">= 2.0" - } null = { source = "hashicorp/null" version = ">= 2.0" diff --git a/examples/with_google_oidc_authentication/versions.tf b/examples/with_google_oidc_authentication/versions.tf index 5947f14f..cd57caa7 100644 --- a/examples/with_google_oidc_authentication/versions.tf +++ b/examples/with_google_oidc_authentication/versions.tf @@ -6,10 +6,6 @@ terraform { source = "hashicorp/aws" version = ">= 2.0" } - template = { - source = "hashicorp/template" - version = ">= 2.0" - } null = { source = "hashicorp/null" version = ">= 2.0" diff --git a/examples/without_authentication/versions.tf b/examples/without_authentication/versions.tf index 5947f14f..cd57caa7 100644 --- a/examples/without_authentication/versions.tf +++ b/examples/without_authentication/versions.tf @@ -6,10 +6,6 @@ terraform { source = "hashicorp/aws" version = ">= 2.0" } - template = { - source = "hashicorp/template" - version = ">= 2.0" - } null = { source = "hashicorp/null" version = ">= 2.0" diff --git a/main.tf b/main.tf index 15e0c460..c7483e60 100644 --- a/main.tf +++ b/main.tf @@ -22,7 +22,7 @@ resource "aws_cloudwatch_log_group" "app" { module "alb_ingress" { source = "cloudposse/alb-ingress/aws" - version = "0.24.1" + version = "0.24.2" vpc_id = var.vpc_id port = var.container_port @@ -178,8 +178,7 @@ module "ecs_alb_service_task" { module "ecs_codepipeline" { enabled = var.codepipeline_enabled - source = "cloudposse/ecs-codepipeline/aws" - version = "0.28.4" + source = "git::https://github.com/sonatype/terraform-aws-ecs-codepipeline.git?ref=tags/0.28.6" region = coalesce(var.region, data.aws_region.current.name) github_oauth_token = var.github_oauth_token @@ -229,7 +228,7 @@ module "ecs_codepipeline" { module "ecs_cloudwatch_autoscaling" { enabled = var.autoscaling_enabled source = "cloudposse/ecs-cloudwatch-autoscaling/aws" - version = "0.7.2" + version = "0.7.3" name = var.name namespace = var.namespace stage = var.stage