loginLogin Registration

workflows: scan: plan: steps: - run: terraform init -backend=false # Run a custom script that scans AND uploads via API - run: ./scripts/scan_and_upload.sh

# 1. Run the scanner trivy config . -o results.json

– Your scan is now stored in Atlantis.

# 2. "Upload" the results to the PR using GitHub CLI (gh) # Note: Atlantis sets environment variables like $PULL_NUM and $HEAD_COMMIT gh pr comment $PULL_NUM --body-file results.json

If you use Prisma Cloud/Checkov, the command to upload results to the Prisma Cloud platform is:

Users log in with their Atlantis WebOrder credentials and perform a "Test Connection" to ensure the software can communicate with the manufacturing server.

Inside scan_and_upload.sh :

You need to modify your atlantis.yaml (Repo config) or the server-side repos.yaml configuration to add a "scan" workflow.

Mandatory for both intraoral and model scans. Common choices include the Atlantis IO FLO for intraoral impressions or the Atlantis FLO for models.

To begin, users must download the (e.g., version 1.11 ) from the Atlantis WebOrder help section.

When the checkov command runs inside the Atlantis container, Atlantis captures the stdout (standard output).

Atlantis Scan Upload [upd] < PROVEN | Release >

workflows: scan: plan: steps: - run: terraform init -backend=false # Run a custom script that scans AND uploads via API - run: ./scripts/scan_and_upload.sh

# 1. Run the scanner trivy config . -o results.json

– Your scan is now stored in Atlantis. atlantis scan upload

# 2. "Upload" the results to the PR using GitHub CLI (gh) # Note: Atlantis sets environment variables like $PULL_NUM and $HEAD_COMMIT gh pr comment $PULL_NUM --body-file results.json

If you use Prisma Cloud/Checkov, the command to upload results to the Prisma Cloud platform is: workflows: scan: plan: steps: - run: terraform init

Users log in with their Atlantis WebOrder credentials and perform a "Test Connection" to ensure the software can communicate with the manufacturing server.

Inside scan_and_upload.sh :

You need to modify your atlantis.yaml (Repo config) or the server-side repos.yaml configuration to add a "scan" workflow.

Mandatory for both intraoral and model scans. Common choices include the Atlantis IO FLO for intraoral impressions or the Atlantis FLO for models. Mandatory for both intraoral and model scans

To begin, users must download the (e.g., version 1.11 ) from the Atlantis WebOrder help section.

When the checkov command runs inside the Atlantis container, Atlantis captures the stdout (standard output).

//