Skip to content

Commit 20beff9

Browse files
authored
Update module dependencies for TF 0.14 support
1 parent faba5b9 commit 20beff9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

main.tf

+7-7
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ module "vpc" {
186186
###################
187187
module "alb" {
188188
source = "terraform-aws-modules/alb/aws"
189-
version = "v5.7.0"
189+
version = "v5.10.0"
190190

191191
name = var.name
192192
internal = var.internal
@@ -264,7 +264,7 @@ resource "aws_lb_listener_rule" "unauthenticated_access_for_cidr_blocks" {
264264
###################
265265
module "alb_https_sg" {
266266
source = "terraform-aws-modules/security-group/aws//modules/https-443"
267-
version = "v3.15.0"
267+
version = "v3.17.0"
268268

269269
name = "${var.name}-alb-https"
270270
vpc_id = local.vpc_id
@@ -277,7 +277,7 @@ module "alb_https_sg" {
277277

278278
module "alb_http_sg" {
279279
source = "terraform-aws-modules/security-group/aws//modules/http-80"
280-
version = "v3.15.0"
280+
version = "v3.17.0"
281281

282282
name = "${var.name}-alb-http"
283283
vpc_id = local.vpc_id
@@ -290,7 +290,7 @@ module "alb_http_sg" {
290290

291291
module "atlantis_sg" {
292292
source = "terraform-aws-modules/security-group/aws"
293-
version = "v3.15.0"
293+
version = "v3.17.0"
294294

295295
name = var.name
296296
vpc_id = local.vpc_id
@@ -316,7 +316,7 @@ module "atlantis_sg" {
316316
###################
317317
module "acm" {
318318
source = "terraform-aws-modules/acm/aws"
319-
version = "v2.10.0"
319+
version = "v2.12.0"
320320

321321
create_certificate = var.certificate_arn == ""
322322

@@ -443,7 +443,7 @@ resource "aws_iam_role_policy" "ecs_task_access_secrets" {
443443

444444
module "container_definition_github_gitlab" {
445445
source = "cloudposse/ecs-container-definition/aws"
446-
version = "v0.40.0"
446+
version = "v0.45.2"
447447

448448
container_name = var.name
449449
container_image = local.atlantis_image
@@ -500,7 +500,7 @@ module "container_definition_github_gitlab" {
500500

501501
module "container_definition_bitbucket" {
502502
source = "cloudposse/ecs-container-definition/aws"
503-
version = "v0.40.0"
503+
version = "v0.45.2"
504504

505505
container_name = var.name
506506
container_image = local.atlantis_image

0 commit comments

Comments
 (0)