added getting ENV vars from Vault

This commit is contained in:
2023-05-12 00:42:14 -05:00
parent f7676e73ba
commit 5e7c52997c
10 changed files with 387 additions and 61 deletions

View File

@ -1,4 +1,8 @@
Command list {{.listName }} failed on running {{.Command}}.
Command list {{.listName }} failed.
The command run was {{.Cmd}}.
The command executed was {{.Command}} {{ if .Args }} {{- range .Args}} {{.}} {{end}} {{end}}
{{ if .Err }} The error was {{ .Err }}{{ end }}
@ -9,4 +13,10 @@ The following commands ran:
{{- range .CmdsRan}}
- {{. -}}
{{end}}
{{ end }}
{{ if .CmdOutput }}{{- range .CmdOutput }}Commad output for {{ .CmdName }}:
{{- range .Output}}
{{ . }}
{{ end }}{{ end }}
{{ end }}