Skip to content

Commit

Permalink
Merge pull request #32832 from vespa-engine/freva/prevent-noclave-deploy
Browse files Browse the repository at this point in the history
Define require-enclave feature flag
  • Loading branch information
hakonhall authored Nov 11, 2024
2 parents 26a6054 + 824915f commit 3852913
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,13 @@ public class PermanentFlags {

public static final UnboundListFlag<String> CLOUD_ACCOUNTS = defineListFlag(
"cloud-accounts", List.of(), String.class,
"A list of 12-digit AWS account IDs that are valid for the given tenant",
"A list of cloud accounts (e.g. AWS account or GCP project IDs) that are valid for the given tenant",
"Takes effect on next deployment through controller",
TENANT_ID);

public static final UnboundBooleanFlag REQUIRE_ENCLAVE = defineFeatureFlag(
"require-enclave", false,
"Whether the given tenant should only be allowed to deploy to enclave",
"Takes effect on next deployment through controller",
TENANT_ID);

Expand Down

0 comments on commit 3852913

Please sign in to comment.