File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 31
31
args :
32
32
- --args=--exclude-downloaded-modules
33
33
- id : terraform_checkov
34
+ args :
35
+ - --args=--skip-check CKV_TF_1
34
36
35
37
- repo : https://github.com/pre-commit/pre-commit-hooks
36
38
rev : v4.2.0
Original file line number Diff line number Diff line change 1
1
plugin "aws" {
2
2
enabled = true
3
- version = " 0.17.0 "
3
+ version = " 0.23.1 "
4
4
source = " github.com/terraform-linters/tflint-ruleset-aws"
5
5
}
6
6
Original file line number Diff line number Diff line change @@ -20,17 +20,23 @@ output "ecs_cluster_name" {
20
20
21
21
output "ecs_service_arn" {
22
22
description = " ARN of the ECS service"
23
- value = try (module. cluster . ecs_service_arn , " " )
23
+ value = try (tomap ({
24
+ for k , f in module . service : k => f . ecs_service_arn
25
+ }), " " )
24
26
}
25
27
26
28
output "ecs_service_name" {
27
29
description = " The name of the ECS service"
28
- value = try (module. cluster . ecs_service_name , " " )
30
+ value = try (tomap ({
31
+ for k , f in module . service : k => f . ecs_service_name
32
+ }), " " )
29
33
}
30
34
31
35
output "aws_ecs_task_definition" {
32
36
description = " ARN of the ECS service"
33
- value = try (module. cluster . aws_ecs_task_definition , " " )
37
+ value = try (tomap ({
38
+ for k , f in module . service : k => f . aws_ecs_task_definition
39
+ }), " " )
34
40
}
35
41
36
42
output "ecs_cloudwatch_log_group_name" {
You can’t perform that action at this time.
0 commit comments