From e9fd65258872b7106ad11bf7e44090c9e17aae20 Mon Sep 17 00:00:00 2001 From: Taylor <28880387+tsmithv11@users.noreply.github.com> Date: Mon, 12 Feb 2024 01:34:07 -0800 Subject: [PATCH] Add env variable for validation --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index 38d01b32..5df7dfe0 100644 --- a/action.yml +++ b/action.yml @@ -100,6 +100,9 @@ inputs: tf_registry_token: description: 'Environment variable name for a Terraform registry token for scanning external modules sourced from private registries' required: false + ckv_validate_secrets: + description: 'Environment variable to enable local validation of secrets. Off by default.' + required: false vcs_base_url: description: 'Environment variable name for the base url of a self hosted VCS with external modules. To be used with vcs_username and vcs_token' required: false @@ -191,4 +194,5 @@ runs: BITBUCKET_USERNAME: ${{ inputs.bitbucket_username }} BITBUCKET_APP_PASSWORD: ${{ inputs.bitbucket_app_password }} PRISMA_API_URL: ${{ inputs.prisma-api-url }} + CKV_VALIDATE_SECRETS: ${{ inputs.ckv_validate_secrets }}