package rules import ( "github.com/zricethezav/gitleaks/v8/config" ) func Heroku() *config.Rule { // define rule r := config.Rule{ Description: "Detected a Heroku API Key, potentially compromising cloud application deployments and operational security.", RuleID: "heroku-api-key", Regex: generateSemiGenericRegex([]string{"heroku"}, hex8_4_4_4_12(), true), Keywords: []string{"heroku"}, } // validate tps := []string{ `const HEROKU_KEY = "12345678-ABCD-ABCD-ABCD-1234567890AB"`, // gitleaks:allow `heroku_api_key = "832d2129-a846-4e27-99f4-7004b6ad53ef"`, // gitleaks:allow } return validate(r, tps, nil) }