FindConfigFile looks for a sops config file in the current working directory and on parent directories, up to the limit defined by the maxDepth constant.
(start string)
| 95 | |
| 96 | // FindConfigFile looks for a sops config file in the current working directory and on parent directories, up to the limit defined by the maxDepth constant. |
| 97 | func FindConfigFile(start string) (string, error) { |
| 98 | result, err := LookupConfigFile(start) |
| 99 | return result.Path, err |
| 100 | } |
| 101 | |
| 102 | type DotenvStoreConfig struct{} |
| 103 |
searching dependent graphs…