We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c552ae commit 72e72ccCopy full SHA for 72e72cc
phase/misc/const.go
@@ -20,8 +20,12 @@ var (
20
// Compiled regex patterns
21
PssUserPattern = regexp.MustCompile(`^pss_user:v(\d+):([a-fA-F0-9]{64}):([a-fA-F0-9]{64}):([a-fA-F0-9]{64}):([a-fA-F0-9]{64})$`)
22
PssServicePattern = regexp.MustCompile(`^pss_service:v(\d+):([a-fA-F0-9]{64}):([a-fA-F0-9]{64}):([a-fA-F0-9]{64}):([a-fA-F0-9]{64})$`)
23
- CrossEnvPattern = regexp.MustCompile(`\$\{(.+?)\.(.+?)\}`)
24
- LocalRefPattern = regexp.MustCompile(`\$\{([^.]+?)\}`)
+
+ //CrossEnvPattern = regexp.MustCompile(`\$\{(.+?)\.(.+?)\}`)
25
+ // LocalRefPattern = regexp.MustCompile(`\$\{([^.]+?)\}`)
26
27
+ // Regex to identify secret references
28
+ SecretRefRegex = regexp.MustCompile(`\$\{([^}]+)\}`)
29
)
30
31
0 commit comments