Security Considerations
Secure User Story Coverage credentials, network access, and automation flows.
Best practices for running User Story Coverage securely and reliably.
The tool runs in your environment and stores outputs on your systems, so the main risks are credential exposure, weak access control, and misconfigured network trust.
Data Handling
What stays in your environment: all generated reports (HTML, JSON, Confluence pages, Jira/ADO updates), source code and repository access, report data and coverage metrics.
What is sent to SeaLights: tagging data (ticket IDs and file paths) during the tagging phase; API requests to read coverage data during the report phase.
What is sent to other systems: Jira/ADO (coverage percentages and summaries, if you use the publish scripts), Confluence (coverage report pages, if you publish detailed reports), GitHub/GitLab/Bitbucket (read-only access to PRs and commits).
Credential Management
Protect credentials at rest, in transit, and during rotation.
Use Secret Management in CI/CD
Inject secrets at runtime instead of storing them in repository files. Choose the secret-management path that matches your CI system.
✅ Prerequisites
Repository or organization secrets already exist.
The workflow can read those secrets.
🚀 Steps
📤 Expected outcome
The workflow receives the required credentials at runtime without storing them in the repository.
✅ Prerequisites
The credentials already exist in Jenkins Credentials.
The pipeline can reference those credentials.
🚀 Steps
📤 Expected outcome
The pipeline reads the credentials from Jenkins at runtime instead of from repository files.
✅ Prerequisites
The CI/CD variables already exist in GitLab.
Sensitive values are marked as masked or protected where needed.
🚀 Steps
📤 Expected outcome
The pipeline receives the required credentials securely at runtime.
Network and Data Security
Protect transport security, network reachability, and local report data.
Git and CI/CD Security
Apply these controls when the workflow clones repositories or runs in automation.
What You Don't Need to Worry About
Since reports stay in your environment, you don't need report-data encryption beyond standard file system security, transmission security (reports aren't sent anywhere), complex data classification (coverage metrics are typically internal-use data), or extensive audit logging beyond standard system logs. Focus your security effort on protecting API tokens and following standard file security practices.
Last updated
Was this helpful?

