Skip to content

Commit

Permalink
Merge pull request #377 from IABTechLab/abu-allow-debug-mode-integ
Browse files Browse the repository at this point in the history
abu-allow-debug-mode-env-in-integ
  • Loading branch information
abuabraham-ttd authored Feb 12, 2025
2 parents 35d76fd + f596ed4 commit 224eb6c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ public class PolicyValidator implements IPolicyValidator {
public static final String ENV_OPERATOR_API_KEY_SECRET_NAME = "API_TOKEN_SECRET_NAME";
public static final String ENV_CORE_ENDPOINT = "CORE_BASE_URL";
public static final String ENV_OPT_OUT_ENDPOINT = "OPTOUT_BASE_URL";
public static final String ENV_DEBUG_MODE = "DEBUG_MODE";
public static final String ENV_SKIP_VALIDATIONS = "SKIP_VALIDATIONS";

public static final String EU_REGION_PREFIX = "europe";

Expand All @@ -42,7 +44,9 @@ public class PolicyValidator implements IPolicyValidator {
),
Environment.Integration, ImmutableList.of(
ENV_CORE_ENDPOINT,
ENV_OPT_OUT_ENDPOINT
ENV_OPT_OUT_ENDPOINT,
ENV_DEBUG_MODE,
ENV_SKIP_VALIDATIONS
)
);
private final String attestationUrl;
Expand Down

0 comments on commit 224eb6c

Please sign in to comment.