Skip to content

Commit

Permalink
Remove template from examples. Upgrade modules that don't use templat…
Browse files Browse the repository at this point in the history
…e. Use forks that don't use template.
  • Loading branch information
johnB96 committed Mar 4, 2022
1 parent be3242c commit f0aff0d
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 20 deletions.
4 changes: 0 additions & 4 deletions examples/complete/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 0 additions & 4 deletions examples/with_cognito_authentication/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 0 additions & 4 deletions examples/with_google_oidc_authentication/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 0 additions & 4 deletions examples/without_authentication/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 3 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f0aff0d

Please sign in to comment.