Skip to content

Commit

Permalink
CAT-24419 Updated task module to latest 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ehirsch-3pg committed Oct 11, 2024
1 parent f273530 commit c2e8742
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,5 @@ output "lb_zone_id" {

output "iam_task_role_arn" {
description = "IAM role ARN associated with a task defition, if task defition is created by the ecs service module"
value = var.task_def_arn == null ? module.task[0].role_arn : "N/A"
value = var.task_def_arn == null ? module.task[0].role_arn : "N/A"
}
2 changes: 1 addition & 1 deletion task.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "task" {
count = var.task_def_arn == null ? 1 : 0
source = "github.com/pbs/terraform-aws-ecs-task-definition-module?ref=2.0.2"
source = "github.com/pbs/terraform-aws-ecs-task-definition-module?ref=2.0.3"

name = local.name

Expand Down

0 comments on commit c2e8742

Please sign in to comment.