forked from toolshed/abra
Finally had to fork godotenv because it strips comments and we need
those to parse length values (e.g. "FOO=v1 # length=10") (or in other
words, motivation to move to the YAML format).
There is a new secret module now, with functionality for dealing with
generation and parsing of secrets.
The final output needs some work and there is also the final step of
implementing the sending of secrets to the docker daemon. Coming Soon
™️.
24 lines
871 B
Modula-2
24 lines
871 B
Modula-2
module coopcloud.tech/abra
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/AlecAivazis/survey/v2 v2.2.15
|
|
github.com/Autonomic-Cooperative/godotenv v1.3.1-0.20210731094149-b031ea1211e7 // indirect
|
|
github.com/containerd/containerd v1.5.5 // indirect
|
|
github.com/docker/cli v20.10.7+incompatible
|
|
github.com/docker/docker v20.10.7+incompatible
|
|
github.com/docker/docker-credential-helpers v0.6.4 // indirect
|
|
github.com/docker/go-units v0.4.0
|
|
github.com/fvbommel/sortorder v1.0.2 // indirect
|
|
github.com/go-git/go-git/v5 v5.4.2
|
|
github.com/moby/sys/mount v0.2.0 // indirect
|
|
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
|
github.com/olekukonko/tablewriter v0.0.5
|
|
github.com/schultz-is/passgen v1.0.1
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/theupdateframework/notary v0.7.0 // indirect
|
|
github.com/urfave/cli/v2 v2.3.0 //ct
|
|
)
|