The aws_ecs_cluster resource provides the ability to specify a logging configuration to ship logs to cloud_watch or a s3_bucket. This feature was introduced back in 3.46.0. Is it possible to get this feature added to the module?
Example:
resource "aws_ecs_cluster" "test" {
  name = "example"
  configuration {
    execute_command_configuration {
      kms_key_id = aws_kms_key.example.arn
      logging    = "OVERRIDE"
      log_configuration {
        cloud_watch_encryption_enabled = true
        cloud_watch_log_group_name     = aws_cloudwatch_log_group.example.name
      }
    }
  }
}