Skip to content

Commit d48a2d7

Browse files
committed
update module
1 parent 345f4cf commit d48a2d7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.96.1
3+
rev: v1.99.4
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_docs

main.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ module "ecs_cluster" {
220220
cloudwatch_log_group_tags = try(var.cluster.cloudwatch_log_group_tags, {})
221221

222222
# Capacity providers
223-
default_capacity_provider_strategy = try(var.cluster.default_capacity_provider_strategy, {})
223+
default_capacity_provider_strategy = try(var.cluster.default_capacity_provider_strategy, {})
224224

225225
tags = var.tags
226226
}
@@ -440,10 +440,10 @@ module "ecs_service" {
440440
security_group_ingress_rules = merge(
441441
{
442442
atlantis = {
443-
description = "Allow traffic from ALB to Atlantis"
444-
from_port = local.atlantis_port
445-
to_port = local.atlantis_port
446-
ip_protocol = "tcp"
443+
description = "Allow traffic from ALB to Atlantis"
444+
from_port = local.atlantis_port
445+
to_port = local.atlantis_port
446+
ip_protocol = "tcp"
447447
referenced_security_group_id = var.create_alb ? module.alb.security_group_id : var.alb_security_group_id
448448
}
449449
},

0 commit comments

Comments
 (0)