- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
07-13-2023 06:09 PM
Hi all,
We are trying the github action for the first time and getting a 503 error:
- id: iac-scan
name: Run Scan on TF files in the repository
uses: prisma-cloud-shiftleft/iac-scan-action@v1.2
with:
# You will need Prisma Cloud API Access Token
# More details in https://github.com/prisma-cloud-shiftleft/iac-scan-action
prisma_api_url: ${{ vars.PRISMA_CLOUD_API_URL }}
access_key: ${{ secrets.PRISMA_CLOUD_ACCESS_KEY }}
secret_key: ${{ secrets.PRISMA_CLOUD_SECRET_KEY }}
# Scan sources on Prisma Cloud are uniquely identified by their name
asset_name: 'datascience--productlibrary'
# The service need to know the type of IaC being scanned
template_type: 'TF'
template_version: '1.2.6'
07-21-2023 07:34 AM
Hi,
Can you try below action:-
For Prisma Cloud users - use your access keys as token in the following format: "<AccessKey>::<SecretKey>"
eg:- 12345678::ABCDEF (Don't use " or < or > )
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Run Prisma Cloud
id: Prisma_Cloud
uses: bridgecrewio/checkov-action@master
env:
PRISMA_API_URL: https://api.anz.prismacloud.io
with:
api-key: ${{ secrets.BC_API_KEY }}
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!