Skip to content

Commit

Permalink
Added missing vars
Browse files Browse the repository at this point in the history
  • Loading branch information
DrizzlyOwl committed Oct 22, 2024
1 parent 841d792 commit b73375e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ecs-cluster-infrastructure-logspout-service.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ resource "aws_ecs_task_definition" "infrastructure_ecs_cluster_logspout" {
cloudwatch_log_group = ""
awslogs_stream_prefix = ""
region = local.aws_region
sidecar_container_name = false
enable_sidecar_container = false
sidecar_container_name = ""
sidecar_image = ""
sidecar_environment = "[]"
sidecar_entrypoint = "[]"
Expand Down
3 changes: 2 additions & 1 deletion ecs-cluster-infrastructure-service-scheduled-task.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ resource "aws_ecs_task_definition" "infrastructure_ecs_cluster_service_scheduled
cloudwatch_log_group = !local.infrastructure_ecs_cluster_logspout_enabled ? each.value["enable_cloudwatch_logs"] == true ? aws_cloudwatch_log_group.infrastructure_ecs_cluster_service[each.value["container_name"]].name : "" : ""
awslogs_stream_prefix = ""
region = local.aws_region
sidecar_container_name = false
enable_sidecar_container = false
sidecar_container_name = ""
sidecar_image = ""
sidecar_environment = "[]"
sidecar_entrypoint = "[]"
Expand Down
3 changes: 2 additions & 1 deletion rds-infrastructure-s3-backups-task-definition.tf
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ resource "aws_ecs_task_definition" "infrastructure_rds_s3_backups_scheduled_task
cloudwatch_log_group = aws_cloudwatch_log_group.infrastructure_rds_s3_backups[each.key].name
awslogs_stream_prefix = "${local.resource_prefix}-rds-s3-backups-${each.key}"
region = local.aws_region
sidecar_container_name = false
enable_sidecar_container = false
sidecar_container_name = ""
sidecar_image = ""
sidecar_environment = "[]"
sidecar_entrypoint = "[]"
Expand Down

0 comments on commit b73375e

Please sign in to comment.