package rules import ( "github.com/zricethezav/gitleaks/v8/cmd/generate/secrets" "github.com/zricethezav/gitleaks/v8/config" ) func FastlyAPIToken() *config.Rule { // define rule r := config.Rule{ Description: "Fastly API key", RuleID: "fastly-api-token", Regex: generateSemiGenericRegex([]string{"fastly"}, alphaNumericExtended("32")), SecretGroup: 1, Keywords: []string{"fastly"}, } // validate tps := []string{ generateSampleSecret("fastly", secrets.NewSecret(alphaNumericExtended("32"))), } return validate(r, tps, nil) }