You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 16, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: internals/secrethub/run.go
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ var (
37
37
ErrReadEnvFile=errRun.Code("env_file_read_error").ErrorPref("could not read the environment file %s: %s")
38
38
ErrEnvDirNotFound=errRun.Code("env_dir_not_found").Error(fmt.Sprintf("could not find specified environment. Make sure you have executed `%s set`.", ApplicationName))
39
39
ErrTemplate=errRun.Code("invalid_template").ErrorPref("could not parse template at line %d: %s")
40
-
ErrTemplateFile=errRun.Code("invalid_template_file").ErrorPref("template file '%s' is invalid: %s")
40
+
ErrParsingTemplate=errRun.Code("template_parsing_failed").ErrorPref("error while processing template file '%s': %s")
41
41
ErrInvalidTemplateVar=errRun.Code("invalid_template_var").ErrorPref("template variable '%s' is invalid: template variables may only contain uppercase letters, digits, and the '_' (underscore) and are not allowed to start with a number")
42
42
ErrSecretsNotAllowedInKey=errRun.Code("secret_in_key").Error("secrets are not allowed in run template keys")
43
43
)
@@ -418,7 +418,7 @@ func ReadEnvFile(filepath string, vars map[string]string, parser tpl.Parser) (En
0 commit comments