output "files_uploaded_queue_arn" {
  description = "ARN of the files uploaded queue"
  value       = aws_sqs_queue.files_uploaded_queue.arn
}

output "transcode_jobs_queue_arn" {
  description = "ARN of the transcode jobs queue"
  value       = aws_sqs_queue.transcode_jobs_queue.arn
}

output "transcode_notifications_queue_arn" {
  description = "ARN of the transcode notifications queue"
  value       = aws_sqs_queue.transcode_notifications_queue.arn
}

output "mediaconvert_role_arn" {
  description = "ARN of the MediaConvert IAM role"
  value       = aws_iam_role.mediaconvert_role.arn
}
