diff --git a/data/reusables/actions/jobs/section-defining-outputs-for-jobs.md b/data/reusables/actions/jobs/section-defining-outputs-for-jobs.md index 43fd5265bab4..f37718764cf6 100644 --- a/data/reusables/actions/jobs/section-defining-outputs-for-jobs.md +++ b/data/reusables/actions/jobs/section-defining-outputs-for-jobs.md @@ -6,12 +6,6 @@ Job outputs containing expressions are evaluated on the runner at the end of eac To use job outputs in a dependent job, you can use the `needs` context. For more information, see "[AUTOTITLE](/actions/learn-github-actions/contexts#needs-context)." -{% note %} - -**Note:** `$GITHUB_OUTPUT` is shared between all steps in a job. If you use the same output name in multiple steps, the last step to write to the output will override the value. If your job uses a matrix and writes to `$GITHUB_OUTPUT`, the content will be overwritten for each matrix combination. You can use the `matrix` context to create unique output names for each job configuration. For more information, see "[AUTOTITLE](/actions/learn-github-actions/contexts#matrix-context)." - -{% endnote %} - ### Example: Defining outputs for a job {% raw %} @@ -40,3 +34,45 @@ jobs: ``` {% endraw %} + +### Using Job Outputs in a Matrix Job + +Matrices can be used to generate multiple outputs of different names. When using a matrix, job outputs will be combined from all jobs inside the matrix. + +{% raw %} + +```yaml +jobs: + job1: + runs-on: ubuntu-latest + outputs: + output_1: ${{ steps.gen_output.outputs.output_1 }} + output_2: ${{ steps.gen_output.outputs.output_2 }} + output_3: ${{ steps.gen_output.outputs.output_3 }} + strategy: + matrix: + version: [1, 2, 3] + steps: + - name: Generate output + id: gen_output + run: | + version="${{ matrix.version }}" + echo "output_${version}=${version}" >> "$GITHUB_OUTPUT" + job2: + runs-on: ubuntu-latest + needs: [job1] + steps: + # Will show + # { + # "output_1": "1", + # "output_2": "2", + # "output_3": "3" + # } + - run: echo '${{ toJSON(needs.job1.outputs) }}' +``` + +{% endraw %} + +{% warning %} +Actions does not guarantee the order that matrix jobs will run in. Ensure that the output name is unique, otherwise the last matrix job that runs will override the output value. +{% endwarning %} diff --git a/data/reusables/two_fa/enable-totp-app-method.md b/data/reusables/two_fa/enable-totp-app-method.md index 297f6aa10300..5e2224f4fa12 100644 --- a/data/reusables/two_fa/enable-totp-app-method.md +++ b/data/reusables/two_fa/enable-totp-app-method.md @@ -5,4 +5,4 @@ ![Screenshot of the "Setup authenticator app" section of the 2FA settings. A link, labeled "setup key", is highlighted in orange.](/assets/images/help/2fa/ghes-3.8-and-higher-2fa-wizard-app-click-code.png) -1. The TOTP application saves your account on {% data variables.location.product_location %} and generates a new authentication code every few seconds. On {% data variables.product.product_name %}, type the code into the field under "Verify the code from the app". +1. The TOTP application saves your account on {% data variables.location.product_location %} and generates a new authentication code every few seconds. On {% data variables.product.product_name %}, type the code into the field under "Verify the code from the app." diff --git a/src/secret-scanning/data/public-docs-schema.js b/src/secret-scanning/data/public-docs-schema.js index 915b80eeccec..a1c7a14a497b 100644 --- a/src/secret-scanning/data/public-docs-schema.js +++ b/src/secret-scanning/data/public-docs-schema.js @@ -34,6 +34,7 @@ export default { 'isPrivateWithGhas', 'hasPushProtection', 'hasValidityCheck', + 'isduplicate', ], properties: { provider: { @@ -66,6 +67,11 @@ export default { description: 'whether the secret has its validation status checked', type: ['boolean', 'string'], }, + isduplicate: { + description: + 'whether the token has more than one version, meaning there are more than one token descriptions with the same token key', + type: ['boolean'], + }, }, }, } diff --git a/src/secret-scanning/data/public-docs.yml b/src/secret-scanning/data/public-docs.yml index 649acf72bb90..162b012817ec 100644 --- a/src/secret-scanning/data/public-docs.yml +++ b/src/secret-scanning/data/public-docs.yml @@ -9,6 +9,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Adobe supportedSecret: Adobe Client Secret secretType: adobe_client_secret @@ -20,6 +21,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Adobe supportedSecret: Adobe Device Token secretType: adobe_device_token @@ -31,6 +33,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Adobe supportedSecret: Adobe PAC Token secretType: adobe_pac_token @@ -42,6 +45,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Adobe supportedSecret: Adobe Refresh Token secretType: adobe_refresh_token @@ -53,6 +57,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Adobe supportedSecret: Adobe Service Token secretType: adobe_service_token @@ -64,6 +69,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Adobe supportedSecret: Adobe Short-Lived Access Token secretType: adobe_short_lived_access_token @@ -75,6 +81,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Aiven supportedSecret: Aiven Auth Token secretType: aiven_auth_token @@ -86,6 +93,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Aiven supportedSecret: Aiven Service Password secretType: aiven_service_password @@ -97,6 +105,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Alibaba supportedSecret: Alibaba Cloud AccessKey ID secretType: alibaba_cloud_access_key_id
alibaba_cloud_access_key_secret @@ -108,6 +117,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Amazon AWS supportedSecret: Amazon AWS Access Key ID secretType: aws_access_key_id
aws_secret_access_key @@ -119,6 +129,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Amazon AWS supportedSecret: Amazon AWS Session Token secretType: >- @@ -131,6 +142,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Anthropic supportedSecret: Anthropic API Key secretType: anthropic_api_key @@ -142,6 +154,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Anthropic supportedSecret: Anthropic Session ID secretType: anthropic_session_id @@ -152,6 +165,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Asana supportedSecret: Asana Legacy Format Personal Access Token secretType: asana_legacy_format_personal_access_token @@ -162,6 +176,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Asana supportedSecret: Asana Personal Access Token secretType: asana_personal_access_token @@ -173,17 +188,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: Atlassian - supportedSecret: Atlassian API Token - secretType: atlassian_api_token - versions: - fpt: '*' - ghec: '*' - ghes: '*' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: false - provider: Atlassian supportedSecret: Atlassian API Token secretType: atlassian_api_token @@ -195,6 +200,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: true - provider: Atlassian supportedSecret: Atlassian JSON Web Token secretType: atlassian_jwt @@ -206,6 +212,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Authress supportedSecret: Authress Service Client Access Key secretType: authress_service_client_access_key @@ -217,6 +224,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Active Directory Application Secret secretType: azure_active_directory_application_secret @@ -228,28 +236,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: Azure - supportedSecret: Azure Active Directory Application Secret - secretType: azure_active_directory_application_secret - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: true - hasValidityCheck: false -- provider: Azure - supportedSecret: Azure Active Directory Application Secret - secretType: azure_active_directory_application_secret - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: false - hasPushProtection: false - hasValidityCheck: false + isduplicate: true - provider: Azure supportedSecret: Azure Active Directory User Credential secretType: azure_active_directory_user_credential @@ -260,6 +247,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Apim Direct Management Key secretType: azure_apim_direct_management_key @@ -270,6 +258,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Apim Gateway Key secretType: azure_apim_gateway_key @@ -280,6 +269,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Apim Repository Key secretType: azure_apim_repository_key @@ -290,6 +280,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Apim Subscription Key secretType: azure_apim_subscription_key @@ -300,6 +291,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure App Configuration Connection String secretType: azure_app_configuration_connection_string @@ -310,6 +302,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Azure supportedSecret: Azure Batch Key Identifiable secretType: azure_batch_key_identifiable @@ -321,6 +314,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Cache for Redis Access Key secretType: azure_cache_for_redis_access_key @@ -332,6 +326,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Communication Services Connection String secretType: azure_communication_services_connection_string @@ -342,6 +337,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Azure supportedSecret: Azure Registry Key Identifiable secretType: azure_container_registry_key_identifiable @@ -353,6 +349,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Cosmosdb Key Identifiable secretType: azure_cosmosdb_key_identifiable @@ -364,6 +361,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure DevOps Personal Access Token secretType: azure_devops_personal_access_token @@ -375,6 +373,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Event Hub Key Identifiable secretType: azure_event_hub_key_identifiable @@ -385,6 +384,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Function Key secretType: azure_function_key @@ -396,6 +396,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure IoT Device Connection String secretType: azure_iot_device_connection_string @@ -406,6 +407,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Azure supportedSecret: Azure IoT Device Key secretType: azure_iot_device_key @@ -416,6 +418,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure IoT Device Provisioning Key secretType: azure_iot_device_provisioning_key @@ -426,6 +429,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure IoT Hub Connection String secretType: azure_iot_hub_connection_string @@ -436,6 +440,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Azure supportedSecret: Azure IoT Hub Key secretType: azure_iot_hub_key @@ -446,6 +451,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure IoT Provisioning Connection String secretType: azure_iot_provisioning_connection_string @@ -456,6 +462,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Azure supportedSecret: Microsoft Azure Service Management Certificate secretType: azure_management_certificate @@ -467,6 +474,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure ML Studio (classic) Web Service Key secretType: azure_ml_web_service_classic_identifiable_key @@ -478,6 +486,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Relay Key Identifiable secretType: azure_relay_key_identifiable @@ -488,6 +497,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure SAS Token secretType: azure_sas_token @@ -499,6 +509,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Search Admin Key secretType: azure_search_admin_key @@ -510,6 +521,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Search Query Key secretType: azure_search_query_key @@ -521,6 +533,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Service Bus Key Identifiable secretType: azure_service_bus_identifiable @@ -531,6 +544,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure SignalR Connection String secretType: azure_signalr_connection_string @@ -541,6 +555,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure SQL Connection String secretType: azure_sql_connection_string @@ -552,6 +567,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure SQL password secretType: azure_sql_password @@ -563,17 +579,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: Azure - supportedSecret: Azure Storage Account Access Key - secretType: azure_storage_account_key - versions: - fpt: '*' - ghec: '*' - ghes: '>3.6' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Azure Storage Account Access Key secretType: azure_storage_account_key @@ -585,6 +591,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: true - provider: Azure supportedSecret: Azure Web Pub Sub Connection String secretType: azure_web_pub_sub_connection_string @@ -595,6 +602,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Azure supportedSecret: Microsoft Corporate Network User Credential secretType: microsoft_corporate_network_user_credential @@ -605,6 +613,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Baidu supportedSecret: Baidu Cloud API Access Key secretType: baiducloud_api_accesskey @@ -616,6 +625,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Beamer supportedSecret: Beamer API Key secretType: beamer_api_key @@ -627,6 +637,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Bitbucket supportedSecret: Bitbucket Server Personal Access Token secretType: bitbucket_server_personal_access_token @@ -638,6 +649,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Canadian Digital Service supportedSecret: Canadian Digital Service Notify API Key secretType: cds_canada_notify_api_key @@ -649,6 +661,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Canva supportedSecret: Canva App Secret secretType: canva_app_secret @@ -659,6 +672,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Canva supportedSecret: Canva Connect API Secret secretType: canva_connect_api_secret @@ -670,6 +684,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Canva supportedSecret: Canva Secret secretType: canva_secret @@ -680,6 +695,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Cashfree supportedSecret: Cashfree API Key secretType: cashfree_api_key @@ -691,17 +707,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: Checkout.com - supportedSecret: Checkout.com Production Secret Key - secretType: checkout_production_secret_key - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: false - provider: Checkout.com supportedSecret: Checkout.com Production Secret Key secretType: checkout_production_secret_key @@ -713,6 +719,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: true - provider: Checkout.com supportedSecret: Checkout.com Test Secret Key secretType: checkout_test_secret_key @@ -724,17 +731,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false -- provider: Checkout.com - supportedSecret: Checkout.com Test Secret Key - secretType: checkout_test_secret_key - versions: - fpt: '*' - ghec: '*' - ghes: '*' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: true - provider: Chief Tools supportedSecret: Chief Tools Token secretType: chief_tools_token @@ -746,6 +743,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: CircleCI supportedSecret: CircleCI Bot API Token secretType: circleci_bot_access_token @@ -756,6 +754,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: CircleCI supportedSecret: CircleCI Personal Access Token secretType: circleci_personal_access_token @@ -767,6 +766,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: CircleCI supportedSecret: CircleCI Project Access Token secretType: circleci_project_access_token @@ -777,6 +777,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: CircleCI supportedSecret: CircleCI Release API Token secretType: circleci_release_integration_token @@ -787,6 +788,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Clojars supportedSecret: Clojars Deploy Token secretType: clojars_deploy_token @@ -798,6 +800,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: CloudBees supportedSecret: CloudBees CodeShip Credential secretType: codeship_credential @@ -809,6 +812,7 @@ isPrivateWithGhas: false hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Contentful supportedSecret: Contentful Personal Access Token secretType: contentful_personal_access_token @@ -820,6 +824,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Contributed Systems supportedSecret: Contributed Systems Credentials secretType: contributed_systems_credentials @@ -830,6 +835,7 @@ isPrivateWithGhas: false hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: crates.io supportedSecret: Crates.io API Token secretType: cratesio_api_token @@ -841,6 +847,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Databricks supportedSecret: Databricks Access Token secretType: databricks_access_token @@ -852,6 +859,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Datadog supportedSecret: Datadog API Key secretType: datadog_api_key @@ -862,6 +870,7 @@ isPrivateWithGhas: false hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Datadog supportedSecret: Datadog Application Key secretType: datadog_app_key @@ -872,6 +881,7 @@ isPrivateWithGhas: false hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Defined Networking supportedSecret: Defined Networking Managed Nebula API Key secretType: defined_networking_nebula_api_key @@ -883,6 +893,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: DevCycle supportedSecret: DevCycle Client API Key secretType: devcycle_client_api_key @@ -894,6 +905,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: DevCycle supportedSecret: DevCycle Mobile API Key secretType: devcycle_mobile_api_key @@ -905,6 +917,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: DevCycle supportedSecret: DevCycle Server API Key secretType: devcycle_server_api_key @@ -916,6 +929,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: DigitalOcean supportedSecret: DigitalOcean OAuth Token secretType: digitalocean_oauth_token @@ -927,6 +941,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: DigitalOcean supportedSecret: DigitalOcean Personal Access Token secretType: digitalocean_personal_access_token @@ -938,6 +953,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: DigitalOcean supportedSecret: DigitalOcean Refresh Token secretType: digitalocean_refresh_token @@ -949,6 +965,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: DigitalOcean supportedSecret: DigitalOcean System Token secretType: digitalocean_system_token @@ -960,6 +977,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Discord supportedSecret: Discord Bot Token secretType: discord_bot_token @@ -971,17 +989,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' -- provider: Discord - supportedSecret: Discord Bot Token - secretType: discord_bot_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: true - hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: true - provider: Docker supportedSecret: Docker Personal Access Token secretType: docker_personal_access_token @@ -993,6 +1001,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Doppler supportedSecret: Doppler Audit Token secretType: doppler_audit_token @@ -1004,6 +1013,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Doppler supportedSecret: Doppler CLI Token secretType: doppler_cli_token @@ -1015,6 +1025,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Doppler supportedSecret: Doppler Personal Token secretType: doppler_personal_token @@ -1026,6 +1037,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Doppler supportedSecret: Doppler SCIM Token secretType: doppler_scim_token @@ -1037,6 +1049,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Doppler supportedSecret: Doppler Service Account Token secretType: doppler_service_account_token @@ -1048,6 +1061,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Doppler supportedSecret: Doppler Service Token secretType: doppler_service_token @@ -1059,6 +1073,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Dropbox supportedSecret: Dropbox Access Token secretType: dropbox_access_token @@ -1070,6 +1085,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Dropbox supportedSecret: Dropbox Short-Lived Access Token secretType: dropbox_short_lived_access_token @@ -1081,6 +1097,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Duffel supportedSecret: Duffel Live Access Token secretType: duffel_live_access_token @@ -1092,6 +1109,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Duffel supportedSecret: Duffel Test Access Token secretType: duffel_test_access_token @@ -1103,6 +1121,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Dynatrace supportedSecret: Dynatrace API Token secretType: dynatrace_api_token @@ -1113,6 +1132,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Dynatrace supportedSecret: Dynatrace Internal Token secretType: dynatrace_internal_token @@ -1124,6 +1144,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: EasyPost supportedSecret: EasyPost Production API Key secretType: easypost_production_api_key @@ -1135,6 +1156,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: EasyPost supportedSecret: EasyPost Test API Key secretType: easypost_test_api_key @@ -1146,6 +1168,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: eBay supportedSecret: eBay Production Client ID (App ID) secretType: ebay_production_client_id
ebay_production_client_secret @@ -1157,6 +1180,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: eBay supportedSecret: eBay Sandbox Client ID (App ID) secretType: ebay_sandbox_client_id
ebay_sandbox_client_secret @@ -1168,6 +1192,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Facebook supportedSecret: Facebook Access Token secretType: facebook_access_token @@ -1179,6 +1204,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Fastly supportedSecret: Fastly API Token secretType: fastly_api_token @@ -1190,17 +1216,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false -- provider: Fastly - supportedSecret: Fastly API Token - secretType: fastly_api_token - versions: - fpt: '*' - ghec: '*' - ghes: '*' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: true - provider: Figma supportedSecret: Figma Personal Access Token secretType: figma_pat @@ -1212,6 +1228,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Finicity supportedSecret: Finicity App Key secretType: finicity_app_key @@ -1223,6 +1240,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Firebase supportedSecret: Firebase Cloud Messaging Server Key secretType: firebase_cloud_messaging_server_key @@ -1234,6 +1252,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Flutterwave supportedSecret: Flutterwave Live API Secret Key secretType: flutterwave_live_api_secret_key @@ -1245,6 +1264,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Flutterwave supportedSecret: Flutterwave Test API Secret Key secretType: flutterwave_test_api_secret_key @@ -1256,6 +1276,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Frame.io supportedSecret: Frame.io Developer Token secretType: frameio_developer_token @@ -1267,6 +1288,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Frame.io supportedSecret: Frame.io JSON Web Token secretType: frameio_jwt @@ -1278,6 +1300,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: FullStory supportedSecret: FullStory API Key secretType: fullstory_api_key @@ -1289,28 +1312,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: FullStory - supportedSecret: FullStory API Key - secretType: fullstory_api_key - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false -- provider: GitHub - supportedSecret: GitHub App Installation Access Token - secretType: github_app_installation_access_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: true - hasValidityCheck: true + isduplicate: true - provider: GitHub supportedSecret: GitHub App Installation Access Token secretType: github_app_installation_access_token @@ -1322,6 +1324,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: true + isduplicate: true - provider: GitHub supportedSecret: GitHub OAuth Access Token secretType: github_oauth_access_token @@ -1333,39 +1336,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: true -- provider: GitHub - supportedSecret: GitHub OAuth Access Token - secretType: github_oauth_access_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: true - hasValidityCheck: true -- provider: GitHub - supportedSecret: GitHub Personal Access Token - secretType: github_personal_access_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: true -- provider: GitHub - supportedSecret: GitHub Personal Access Token - secretType: github_personal_access_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: true - hasValidityCheck: true + isduplicate: true - provider: GitHub supportedSecret: GitHub Personal Access Token secretType: github_personal_access_token @@ -1377,6 +1348,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: true + isduplicate: true - provider: GitHub supportedSecret: GitHub Refresh Token secretType: github_refresh_token @@ -1388,6 +1360,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: true + isduplicate: false - provider: GitHub supportedSecret: GitHub SSH Private Key secretType: github_ssh_private_key @@ -1399,6 +1372,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: true + isduplicate: false - provider: GitHub supportedSecret: GitHub Test Token secretType: github_test_token @@ -1409,6 +1383,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: GitHub Secret Scanning supportedSecret: GitHub Secret Scanning secretType: secret_scanning_sample_token @@ -1419,6 +1394,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: GitLab supportedSecret: GitLab Access Token secretType: gitlab_access_token @@ -1430,6 +1406,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: GoCardless supportedSecret: GoCardless Live Access Token secretType: gocardless_live_access_token @@ -1441,6 +1418,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: GoCardless supportedSecret: GoCardless Sandbox Access Token secretType: gocardless_sandbox_access_token @@ -1452,6 +1430,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Google supportedSecret: Google API Key secretType: google_api_key @@ -1463,6 +1442,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Google supportedSecret: Google Cloud Private Key ID secretType: google_cloud_private_key_id @@ -1474,6 +1454,7 @@ isPrivateWithGhas: false hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Google supportedSecret: Google Cloud Service Account Credentials secretType: google_cloud_service_account_credentials @@ -1485,6 +1466,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Google supportedSecret: Google Cloud Storage Service Account Access Key ID secretType: >- @@ -1497,6 +1479,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Google supportedSecret: Google Cloud Storage User Access Key ID secretType: >- @@ -1509,6 +1492,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Google supportedSecret: Google OAuth Access Token secretType: google_oauth_access_token @@ -1520,6 +1504,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Google supportedSecret: Google OAuth Client ID secretType: google_oauth_client_id
google_oauth_client_secret @@ -1531,6 +1516,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Google supportedSecret: Google OAuth Refresh Token secretType: google_oauth_refresh_token @@ -1542,6 +1528,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Grafana supportedSecret: Grafana Cloud API Key secretType: grafana_cloud_api_key @@ -1553,6 +1540,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Grafana supportedSecret: Grafana Cloud API Token secretType: grafana_cloud_api_token @@ -1564,6 +1552,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Grafana supportedSecret: Grafana Project API Key secretType: grafana_project_api_key @@ -1575,6 +1564,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Grafana supportedSecret: Grafana Project Service Account Token secretType: grafana_project_service_account_token @@ -1586,17 +1576,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: HashiCorp - supportedSecret: HashiCorp Vault Batch Token - secretType: hashicorp_vault_batch_token - versions: - fpt: '*' - ghec: '*' - ghes: '>3.8' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: false - provider: HashiCorp supportedSecret: HashiCorp Vault Batch Token secretType: hashicorp_vault_batch_token @@ -1608,6 +1588,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: true - provider: HashiCorp supportedSecret: HashiCorp Vault Root Service Token secretType: hashicorp_vault_root_service_token @@ -1619,6 +1600,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: HashiCorp supportedSecret: HashiCorp Vault Service Token secretType: hashicorp_vault_service_token @@ -1630,17 +1612,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: HashiCorp - supportedSecret: HashiCorp Vault Service Token - secretType: hashicorp_vault_service_token - versions: - fpt: '*' - ghec: '*' - ghes: '>3.8' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: true - provider: HashiCorp supportedSecret: Terraform Cloud / Enterprise API Token secretType: terraform_api_token @@ -1652,6 +1624,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Highnote supportedSecret: Highnote RK Live Key secretType: highnote_rk_live_key @@ -1663,6 +1636,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Highnote supportedSecret: Highnote RK Test Key secretType: highnote_rk_test_key @@ -1674,6 +1648,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Highnote supportedSecret: Highnote SK Live Key secretType: highnote_sk_live_key @@ -1685,6 +1660,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Highnote supportedSecret: Highnote SK Test Key secretType: highnote_sk_test_key @@ -1696,6 +1672,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: HOP supportedSecret: HOP Bearer secretType: hop_bearer @@ -1707,6 +1684,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: HOP supportedSecret: HOP PAT secretType: hop_pat @@ -1718,6 +1696,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: HOP supportedSecret: HOP PTK secretType: hop_ptk @@ -1729,28 +1708,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: Hubspot - supportedSecret: Hubspot API Key - secretType: hubspot_api_key - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: false - hasPushProtection: false - hasValidityCheck: false -- provider: Hubspot - supportedSecret: Hubspot API Key - secretType: hubspot_api_key - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: false - provider: Hubspot supportedSecret: Hubspot API Key secretType: hubspot_api_key @@ -1762,6 +1720,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: true - provider: Hubspot supportedSecret: Hubspot Personal Access Key secretType: hubspot_personal_access_key @@ -1772,6 +1731,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Hubspot supportedSecret: Hubspot SMTP Credential secretType: hubspot_smtp_credential @@ -1782,6 +1742,7 @@ isPrivateWithGhas: false hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: IBM supportedSecret: IBM Cloud IAM Key secretType: ibm_cloud_iam_key @@ -1792,6 +1753,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: IBM supportedSecret: IBM SoftLayer API Key secretType: ibm_softlayer_api_key @@ -1802,6 +1764,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Intercom supportedSecret: Intercom Access Token secretType: intercom_access_token @@ -1813,17 +1776,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: Ionic - supportedSecret: Ionic Personal Access Token - secretType: ionic_personal_access_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: false - provider: Ionic supportedSecret: Ionic Personal Access Token secretType: ionic_personal_access_token @@ -1835,6 +1788,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: true - provider: Ionic supportedSecret: Ionic Refresh Token secretType: ionic_refresh_token @@ -1846,17 +1800,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: Ionic - supportedSecret: Ionic Refresh Token - secretType: ionic_refresh_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: true - provider: JFrog supportedSecret: JFrog Platform Access Token secretType: jfrog_platform_access_token @@ -1868,6 +1812,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: JFrog supportedSecret: JFrog Platform API Key secretType: jfrog_platform_api_key @@ -1879,6 +1824,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: JFrog supportedSecret: JFrog Platform Reference Token secretType: jfrog_platform_reference_token @@ -1890,6 +1836,18 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false +- provider: LaunchDarkly + supportedSecret: LaunchDarkly API Token + secretType: launchdarkly_access_token + versions: + fpt: '*' + ghec: '*' + isPublic: true + isPrivateWithGhas: false + hasPushProtection: false + hasValidityCheck: false + isduplicate: false - provider: Lightspeed supportedSecret: Lightspeed Personal Access Token secretType: lightspeed_xs_pat @@ -1901,6 +1859,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Linear supportedSecret: Linear API Key secretType: linear_api_key @@ -1912,6 +1871,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Linear supportedSecret: Linear OAuth Access Token secretType: linear_oauth_access_token @@ -1923,6 +1883,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Lob supportedSecret: Lob Live API Key secretType: lob_live_api_key @@ -1934,6 +1895,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Lob supportedSecret: Lob Test API Key secretType: lob_test_api_key @@ -1945,6 +1907,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Localstack supportedSecret: Localstack API Key secretType: localstack_api_key @@ -1956,6 +1919,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: LogicMonitor supportedSecret: LogicMonitor Bearer Token secretType: logicmonitor_bearer_token @@ -1967,6 +1931,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: LogicMonitor supportedSecret: LogicMonitor LMv1 Access Key secretType: logicmonitor_lmv1_access_key @@ -1978,6 +1943,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Login with Amazon supportedSecret: Login with Amazon OAuth Client ID secretType: >- @@ -1990,6 +1956,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Mailchimp supportedSecret: Mailchimp API Key secretType: mailchimp_api_key @@ -2001,6 +1968,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Mailchimp supportedSecret: Mandrill API Key secretType: mandrill_api_key @@ -2011,6 +1979,7 @@ isPrivateWithGhas: false hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Mailgun supportedSecret: Mailgun API Key secretType: mailgun_api_key @@ -2022,17 +1991,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' -- provider: Mailgun - supportedSecret: Mailgun API Key - secretType: mailgun_api_key - versions: - fpt: '*' - ghec: '*' - ghes: '*' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: true - provider: Mailgun supportedSecret: Mailgun SMTP Credential secretType: mailgun_smtp_credential @@ -2043,6 +2002,7 @@ isPrivateWithGhas: false hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Mapbox supportedSecret: Mapbox Secret Access Token secretType: mapbox_secret_access_token @@ -2054,6 +2014,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: MaxMind supportedSecret: MaxMind License Key secretType: maxmind_license_key @@ -2065,6 +2026,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Mercury supportedSecret: Mercury Non-Production API Token secretType: mercury_non_production_api_token @@ -2076,6 +2038,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Mercury supportedSecret: Mercury Production API Token secretType: mercury_production_api_token @@ -2087,6 +2050,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Mergify supportedSecret: Mergify Application Key secretType: mergify_application_key @@ -2098,6 +2062,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: MessageBird supportedSecret: MessageBird API Key secretType: messagebird_api_key @@ -2109,6 +2074,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Midtrans supportedSecret: Midtrans Production Server Key secretType: midtrans_production_server_key @@ -2120,6 +2086,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Midtrans supportedSecret: Midtrans Sandbox Server Key secretType: midtrans_sandbox_server_key @@ -2131,6 +2098,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: New Relic supportedSecret: New Relic Insights Query Key secretType: new_relic_insights_query_key @@ -2142,6 +2110,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: New Relic supportedSecret: New Relic License Key secretType: new_relic_license_key @@ -2153,6 +2122,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: New Relic supportedSecret: New Relic Personal API Key secretType: new_relic_personal_api_key @@ -2164,6 +2134,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: New Relic supportedSecret: New Relic REST API Key secretType: new_relic_rest_api_key @@ -2175,6 +2146,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Notion supportedSecret: Notion Integration Token secretType: notion_integration_token @@ -2186,6 +2158,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Notion supportedSecret: Notion OAuth Client Secret secretType: notion_oauth_client_secret @@ -2197,6 +2170,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: npm supportedSecret: npm Access Token secretType: npm_access_token @@ -2208,28 +2182,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: npm - supportedSecret: npm Access Token - secretType: npm_access_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false -- provider: npm - supportedSecret: npm Access Token - secretType: npm_access_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: false - hasPushProtection: false - hasValidityCheck: false + isduplicate: true - provider: NuGet supportedSecret: NuGet API Key secretType: nuget_api_key @@ -2241,6 +2194,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Octopus Deploy supportedSecret: Octopus Deploy API Key secretType: octopus_deploy_api_key @@ -2252,6 +2206,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Oculus supportedSecret: Oculus Access Token secretType: oculus_access_token @@ -2262,6 +2217,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: OneChronos supportedSecret: OneChronos API Token secretType: onechronos_api_key @@ -2273,6 +2229,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: OneChronos supportedSecret: OneChronos Expressive Bidding API Key secretType: onechronos_eb_api_key @@ -2284,6 +2241,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: OneChronos supportedSecret: OneChronos Expressive Bidding Encryption Key secretType: onechronos_eb_encryption_key @@ -2295,6 +2253,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: OneChronos supportedSecret: OneChronos OAuth Token secretType: onechronos_oauth_token @@ -2306,6 +2265,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: OneChronos supportedSecret: OneChronos Refresh Token secretType: onechronos_refresh_token @@ -2317,6 +2277,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Onfido supportedSecret: Onfido Live API Token secretType: onfido_live_api_token @@ -2328,6 +2289,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Onfido supportedSecret: Onfido Sandbox API Token secretType: onfido_sandbox_api_token @@ -2339,6 +2301,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: OpenAI supportedSecret: OpenAI API Key secretType: openai_api_key @@ -2350,17 +2313,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' -- provider: OpenAI - supportedSecret: OpenAI API Key - secretType: openai_api_key - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: true - provider: Orbit supportedSecret: Orbit API Token secretType: orbit_api_token @@ -2371,6 +2324,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: PagerDuty supportedSecret: PagerDuty OAuth Secret secretType: pagerduty_oauth_secret @@ -2381,6 +2335,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: PagerDuty supportedSecret: PagerDuty OAuth Token secretType: pagerduty_oauth_token @@ -2391,6 +2346,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Palantir supportedSecret: Palantir JSON Web Token secretType: palantir_jwt @@ -2402,6 +2358,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Persona Identities supportedSecret: Persona Production Api Key secretType: persona_production_api_key @@ -2413,6 +2370,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Persona Identities supportedSecret: Persona Sandbox Api Key secretType: persona_sandbox_api_key @@ -2424,6 +2382,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Pinterest supportedSecret: Pinterest Access Token secretType: pinterest_access_token @@ -2435,6 +2394,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Pinterest supportedSecret: Pinterest Refresh Token secretType: pinterest_refresh_token @@ -2446,6 +2406,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: PlanetScale supportedSecret: PlanetScale Database Password secretType: planetscale_database_password @@ -2457,6 +2418,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: PlanetScale supportedSecret: PlanetScale OAuth Token secretType: planetscale_oauth_token @@ -2468,6 +2430,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: PlanetScale supportedSecret: PlanetScale Service Token secretType: planetscale_service_token @@ -2479,6 +2442,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Plivo supportedSecret: Plivo Auth ID secretType: plivo_auth_id
plivo_auth_token @@ -2490,6 +2454,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Postman supportedSecret: Postman API Key secretType: postman_api_key @@ -2501,6 +2466,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Postman supportedSecret: Postman Collection Key secretType: postman_collection_key @@ -2512,6 +2478,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Prefect supportedSecret: Prefect Server API Key secretType: prefect_server_api_key @@ -2523,6 +2490,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Prefect supportedSecret: Prefect User API Key secretType: prefect_user_api_key @@ -2534,6 +2502,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Proctorio supportedSecret: Proctorio Consumer Key secretType: proctorio_consumer_key @@ -2545,6 +2514,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Proctorio supportedSecret: Proctorio Linkage Key secretType: proctorio_linkage_key @@ -2556,6 +2526,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Proctorio supportedSecret: Proctorio Registration Key secretType: proctorio_registration_key @@ -2567,6 +2538,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Proctorio supportedSecret: Proctorio Secret Key secretType: proctorio_secret_key @@ -2578,17 +2550,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: Proctorio - supportedSecret: Proctorio Secret Key - secretType: proctorio_secret_key - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: true - provider: Pulumi supportedSecret: Pulumi Access Token secretType: pulumi_access_token @@ -2600,6 +2562,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: PyPI supportedSecret: PyPI API Token secretType: pypi_api_token @@ -2611,6 +2574,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: ReadMe supportedSecret: ReadMe API Key secretType: readmeio_api_access_token @@ -2622,6 +2586,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: redirect.pizza supportedSecret: redirect.pizza API Token secretType: redirect_pizza_api_token @@ -2633,6 +2598,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Replicate supportedSecret: Replicate API Token secretType: replicate_api_token @@ -2643,6 +2609,7 @@ isPrivateWithGhas: false hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Rootly supportedSecret: Rootly API Key secretType: rootly_api_key @@ -2654,6 +2621,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: RubyGems supportedSecret: RubyGems API Key secretType: rubygems_api_key @@ -2665,6 +2633,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Samsara supportedSecret: Samsara API Token secretType: samsara_api_token @@ -2676,6 +2645,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Samsara supportedSecret: Samsara OAuth Access Token secretType: samsara_oauth_access_token @@ -2687,6 +2657,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Segment supportedSecret: Segment Public API Token secretType: segment_public_api_token @@ -2698,6 +2669,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: SendGrid supportedSecret: SendGrid API Key secretType: sendgrid_api_key @@ -2709,6 +2681,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Sendinblue supportedSecret: Sendinblue API Key secretType: sendinblue_api_key @@ -2720,6 +2693,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Sendinblue supportedSecret: Sendinblue SMTP Key secretType: sendinblue_smtp_key @@ -2731,6 +2705,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Shippo supportedSecret: Shippo Live API Token secretType: shippo_live_api_token @@ -2742,6 +2717,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Shippo supportedSecret: Shippo Test API Token secretType: shippo_test_api_token @@ -2753,6 +2729,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Shopify supportedSecret: Shopify Access Token secretType: shopify_access_token @@ -2764,6 +2741,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Shopify supportedSecret: Shopify App Client Credentials secretType: shopify_app_client_credentials @@ -2775,6 +2753,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Shopify supportedSecret: Shopify App Client Secret secretType: shopify_app_client_secret @@ -2786,6 +2765,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Shopify supportedSecret: Shopify App Shared Secret secretType: shopify_app_shared_secret @@ -2797,6 +2777,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Shopify supportedSecret: Shopify Custom App Access Token secretType: shopify_custom_app_access_token @@ -2808,6 +2789,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Shopify supportedSecret: Shopify Marketplace Token secretType: shopify_marketplace_token @@ -2819,6 +2801,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Shopify supportedSecret: Shopify Merchant Token secretType: shopify_merchant_token @@ -2830,6 +2813,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Shopify supportedSecret: Shopify Partner API Token secretType: shopify_partner_api_token @@ -2841,6 +2825,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Shopify supportedSecret: Shopify Private App Password secretType: shopify_private_app_password @@ -2852,6 +2837,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Slack supportedSecret: Slack API Token secretType: slack_api_token @@ -2863,28 +2849,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' -- provider: Slack - supportedSecret: Slack API Token - secretType: slack_api_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' -- provider: Slack - supportedSecret: Slack API Token - secretType: slack_api_token - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.5' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: true - hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: true - provider: Slack supportedSecret: Slack Incoming Webhook URL secretType: slack_incoming_webhook_url @@ -2896,6 +2861,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Slack supportedSecret: Slack Workflow Webhook URL secretType: slack_workflow_webhook_url @@ -2907,6 +2873,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Square supportedSecret: Square Access Token secretType: square_access_token @@ -2918,28 +2885,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false -- provider: Square - supportedSecret: Square Access Token - secretType: square_access_token - versions: - fpt: '*' - ghec: '*' - ghes: '*' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false -- provider: Square - supportedSecret: Square Access Token - secretType: square_access_token - versions: - fpt: '*' - ghec: '*' - ghes: '*' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: true - provider: Square supportedSecret: Square Production Application Secret secretType: square_production_application_secret @@ -2951,6 +2897,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Square supportedSecret: Square Sandbox Application Secret secretType: square_sandbox_application_secret @@ -2962,6 +2909,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: SSLMate supportedSecret: SSLMate API Key secretType: sslmate_api_key @@ -2973,17 +2921,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false -- provider: SSLMate - supportedSecret: SSLMate API Key - secretType: sslmate_api_key - versions: - fpt: '*' - ghec: '*' - ghes: '*' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false + isduplicate: true - provider: SSLMate supportedSecret: SSLMate Cluster Secret secretType: sslmate_cluster_secret @@ -2995,6 +2933,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Stripe supportedSecret: Stripe API Key secretType: stripe_api_key @@ -3006,6 +2945,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Stripe supportedSecret: Stripe Legacy API Key secretType: stripe_legacy_api_key @@ -3017,6 +2957,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Stripe supportedSecret: Stripe Live API Restricted Key secretType: stripe_live_restricted_key @@ -3028,6 +2969,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Stripe supportedSecret: Stripe Test API Restricted Key secretType: stripe_test_restricted_key @@ -3039,6 +2981,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Stripe supportedSecret: Stripe Test API Secret Key secretType: stripe_test_secret_key @@ -3050,20 +2993,10 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Stripe supportedSecret: Stripe Webhook Signing Secret secretType: stripe_webhook_signing_secret - versions: - fpt: '*' - ghec: '*' - ghes: '*' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: false - hasValidityCheck: false -- provider: Supabase - supportedSecret: Supabase Service Key - secretType: supabase_service_key versions: fpt: '*' ghec: '*' @@ -3072,6 +3005,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Supabase supportedSecret: Supabase Service Key secretType: supabase_service_key @@ -3083,6 +3017,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: true - provider: Tableau supportedSecret: Tableau Personal Access Token secretType: tableau_personal_access_token @@ -3094,6 +3029,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Telegram supportedSecret: Telegram Bot Token secretType: telegram_bot_token @@ -3105,6 +3041,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}' + isduplicate: false - provider: Telnyx supportedSecret: Telnyx API V2 Key secretType: telnyx_api_v2_key @@ -3116,6 +3053,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Tencent supportedSecret: Tencent Cloud Secret ID secretType: tencent_cloud_secret_id @@ -3127,6 +3065,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Tencent supportedSecret: Tencent WeChat API App ID secretType: tencent_wechat_api_app_id @@ -3138,6 +3077,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Twilio supportedSecret: Twilio Access Token secretType: twilio_access_token @@ -3149,6 +3089,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Twilio supportedSecret: Twilio Account String Identifier secretType: twilio_account_sid @@ -3160,6 +3101,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Twilio supportedSecret: Twilio API Key secretType: twilio_api_key @@ -3171,6 +3113,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Typeform supportedSecret: Typeform Personal Access Token secretType: typeform_personal_access_token @@ -3182,6 +3125,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Uniwise supportedSecret: WISEflow API Key secretType: wiseflow_api_key @@ -3193,6 +3137,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Unkey supportedSecret: Unkey Root Key secretType: unkey_root_key @@ -3203,6 +3148,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: VolcEngine supportedSecret: VolcEngine Access Key ID secretType: volcengine_access_key_id @@ -3214,6 +3160,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Wakatime supportedSecret: WakaTime API Key secretType: wakatime_api_key @@ -3224,6 +3171,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Wakatime supportedSecret: WakaTime App Secret secretType: wakatime_app_secret @@ -3235,6 +3183,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Wakatime supportedSecret: WakaTime OAuth Access Token secretType: wakatime_oauth_access_token @@ -3246,6 +3195,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Wakatime supportedSecret: WakaTime OAuth Refresh Token secretType: wakatime_oauth_refresh_token @@ -3257,6 +3207,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Workato supportedSecret: Workato Developer API Token secretType: workato_developer_api_token @@ -3268,50 +3219,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false -- provider: Workato - supportedSecret: Workato Developer API Token - secretType: workato_developer_api_token - versions: - fpt: '*' - ghec: '*' - ghes: '>3.11' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: true - hasValidityCheck: false -- provider: Workato - supportedSecret: Workato Developer API Token - secretType: workato_developer_api_token - versions: - fpt: '*' - ghec: '*' - ghes: '>3.11' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: true - hasValidityCheck: false -- provider: Workato - supportedSecret: Workato Developer API Token - secretType: workato_developer_api_token - versions: - fpt: '*' - ghec: '*' - ghes: '>3.11' - isPublic: true - isPrivateWithGhas: true - hasPushProtection: true - hasValidityCheck: false -- provider: WorkOS - supportedSecret: WorkOS Production API Key - secretType: workos_production_api_key - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.12' - isPublic: false - isPrivateWithGhas: true - hasPushProtection: true - hasValidityCheck: false + isduplicate: true - provider: WorkOS supportedSecret: WorkOS Production API Key secretType: workos_production_api_key @@ -3320,20 +3228,10 @@ ghec: '*' ghes: '>=3.12' isPublic: true - isPrivateWithGhas: false - hasPushProtection: false - hasValidityCheck: false -- provider: WorkOS - supportedSecret: WorkOS Staging API Key - secretType: workos_staging_api_key - versions: - fpt: '*' - ghec: '*' - ghes: '>=3.12' - isPublic: false isPrivateWithGhas: true - hasPushProtection: false + hasPushProtection: true hasValidityCheck: false + isduplicate: true - provider: WorkOS supportedSecret: WorkOS Staging API Key secretType: workos_staging_api_key @@ -3342,9 +3240,10 @@ ghec: '*' ghes: '>=3.12' isPublic: true - isPrivateWithGhas: false + isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: true - provider: Yandex supportedSecret: Yandex.Cloud API Key secretType: yandex_cloud_api_key @@ -3356,6 +3255,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Yandex supportedSecret: Yandex.Cloud Access Secret secretType: yandex_cloud_iam_access_secret @@ -3366,6 +3266,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Yandex supportedSecret: Yandex.Cloud IAM Cookie secretType: yandex_cloud_iam_cookie @@ -3377,6 +3278,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Yandex supportedSecret: Yandex.Cloud IAM Token secretType: yandex_cloud_iam_token @@ -3388,6 +3290,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Yandex supportedSecret: Yandex.Cloud Smartchapta Server Key secretType: yandex_cloud_smartcaptcha_server_key @@ -3399,6 +3302,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Yandex supportedSecret: Yandex.Dictionary API Key secretType: yandex_dictionary_api_key @@ -3410,6 +3314,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Yandex supportedSecret: Yandex.Passport OAuth Token secretType: yandex_passport_oauth_token @@ -3420,6 +3325,7 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false - provider: Yandex supportedSecret: Yandex.Predictor API Key secretType: yandex_predictor_api_key @@ -3431,6 +3337,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Yandex supportedSecret: Yandex.Translate API Key secretType: yandex_translate_api_key @@ -3442,6 +3349,7 @@ isPrivateWithGhas: true hasPushProtection: false hasValidityCheck: false + isduplicate: false - provider: Zuplo supportedSecret: Zuplo Consumer API Key secretType: zuplo_consumer_api_key @@ -3453,3 +3361,4 @@ isPrivateWithGhas: true hasPushProtection: true hasValidityCheck: false + isduplicate: false diff --git a/src/secret-scanning/lib/config.json b/src/secret-scanning/lib/config.json index 4f2c70820d8d..e2a9c3b1de23 100644 --- a/src/secret-scanning/lib/config.json +++ b/src/secret-scanning/lib/config.json @@ -1,4 +1,4 @@ { - "sha": "c7f047cb3ca94c91c1eba737838789c4257f1f67", - "blob-sha": "13c59b82fef1bd99b512bb546e95cc77f14d5be3" -} + "sha": "6c7107e083f434674ffc292b10ba22b7d6af7105", + "blob-sha": "6f32d5c6120d315cd13d6d11948c21ee11f59a79" +} \ No newline at end of file diff --git a/src/types.ts b/src/types.ts index 9466dc0e14a8..7d770d61251a 100644 --- a/src/types.ts +++ b/src/types.ts @@ -298,6 +298,7 @@ export type SecretScanningData = { isPrivateWithGhas: boolean hasPushProtection: boolean hasValidityCheck: boolean | string + isduplicate: boolean } type Language = {