Skip to content

Commit

Permalink
fix: Fix issue preventing secrets with a - in the path from being imp…
Browse files Browse the repository at this point in the history
…orted (#8378)
  • Loading branch information
Joffcom authored and ivov committed Jan 22, 2024
1 parent 960f436 commit e47a0d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/ExternalSecrets/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ export const EXTERNAL_SECRETS_DB_KEY = 'feature.externalSecrets';
export const EXTERNAL_SECRETS_INITIAL_BACKOFF = 10 * 1000;
export const EXTERNAL_SECRETS_MAX_BACKOFF = 5 * 60 * 1000;

export const EXTERNAL_SECRETS_NAME_REGEX = /^[a-zA-Z0-9\_\/]+$/;
export const EXTERNAL_SECRETS_NAME_REGEX = /^[a-zA-Z0-9\-\_\/]+$/;

0 comments on commit e47a0d5

Please sign in to comment.