output "service_name" {
  description = "ECS service name"
  value       = module.fargate_environment.fargate_web_service_name
}

output "service_endpoint" {
  description = "The internal load balancer DNS name for the JODConverter service"
  value       = module.fargate_environment.fargate_load_balancer_dns_name
}

output "gh_token_secret_arn" {
  description = "ARN of the jodconverter GH_TOKEN Secrets Manager secret"
  value       = module.gh_token_secret.secret_arn
}

output "jenkins_pipeline_deploy_role_arn" {
  description = "ARN of the Jenkins read-only role for the GH_TOKEN secret"
  value       = aws_iam_role.build_role.arn
}
