Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

abu-allow-debug-mode-env-in-integ #377

Merged
merged 2 commits into from
Feb 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading