Documentation ¶
Overview ¶
Package util provides utility functions for Terragrunt.
Index ¶
- Constants
- func AsTerraformEnvVarJSONValue(value interface{}) (string, error)
- func CanonicalPath(path string, basePath string) (string, error)
- func CanonicalPaths(paths []string, basePath string) ([]string, error)
- func CleanPath(path string) string
- func CloneStringList(listToClone []string) []string
- func CloneStringMap(mapToClone map[string]string) map[string]string
- func CommaSeparatedStrings(list []string) string
- func ContainsPath(path, subpath string) bool
- func CopyFile(source string, destination string) error
- func CopyFolderContents(logger log.Logger, source, destination, manifestFile string, ...) error
- func CopyFolderContentsWithFilter(logger log.Logger, source, destination, manifestFile string, ...) error
- func DoWithRetry(ctx context.Context, actionDescription string, maxRetries int, ...) error
- func EncodeBase64Sha1(str string) string
- func EnsureDirectory(path string) error
- func FileExists(path string) bool
- func FileNotExists(path string) bool
- func FileOrData(maybePath string) (string, error)
- func FileSHA256(filePath string) ([]byte, error)
- func FirstArg[S ~[]E, E comparable](args S) E
- func GenerateRandomSha256() (string, error)
- func GetCacheDir() (string, error)
- func GetExcludeDirsFromFile(baseDir, filename string) ([]string, error)
- func GetExitCode(err error) (int, error)
- func GetPathRelativeTo(path string, basePath string) (string, error)
- func GetRandomTime(lowerBound, upperBound time.Duration) time.Duration
- func GetTempDir() (string, error)
- func GlobCanonicalPath(basePath string, globPaths ...string) ([]string, error)
- func Grep(regex *regexp.Regexp, glob string) (bool, error)
- func HasPathPrefix(path, prefix string) bool
- func IsCommandExecutable(command string, args ...string) bool
- func IsDir(path string) bool
- func IsDirectoryEmpty(dirPath string) (bool, error)
- func IsFile(path string) bool
- func IsSymLink(path string) bool
- func JoinPath(elem ...string) string
- func JoinTerraformModulePath(modulesFolder string, path string) string
- func KindOf(value interface{}) reflect.Kind
- func LastArg[S ~[]E, E comparable](args S) E
- func ListContainsElement[S ~[]E, E comparable](list S, element any) bool
- func ListContainsSublist[S ~[]E, E comparable](list, sublist S) bool
- func ListEquals[S ~[]E, E comparable](a, b S) bool
- func ListHasPrefix[S ~[]E, E comparable](list, prefix S) bool
- func ListTfFiles(directoryPath string) ([]string, error)
- func MatchSha256Checksum(file, filename []byte) []byte
- func MatchesAny(regExps []string, s string) bool
- func Min(x, y int) int
- func MustWalkTerraformOutput(value interface{}, path ...string) interface{}
- func NewFileManifest(logger log.Logger, manifestFolder string, manifestFile string) *fileManifest
- func ParseTimestamp(ts string) (time.Time, error)
- func PrefixedWriter(writer io.Writer, prefix string) io.Writer
- func ReadFileAsString(path string) (string, error)
- func RemoveDuplicatesFromList[S ~[]E, E comparable](list S) S
- func RemoveDuplicatesFromListKeepLast[S ~[]E, E comparable](list S) S
- func RemoveElementFromList[S ~[]E, E comparable](list S, element E) S
- func RemoveSublistFromList[S ~[]E, E comparable](list, sublist S) S
- func SecondArg[S ~[]E, E comparable](args S) E
- func SplitPath(path string) []string
- func SplitUrls(s, sep string) []string
- func StringListInsert(list []string, element string, index int) []string
- func TerragruntExcludes(path string) bool
- func UniqueID() string
- func Unwrap[V error](err error) *V
- func WriteFileWithSamePermissions(source string, destination string, contents []byte) error
- func WriterNotifier(writer io.Writer, notifyFn func(p []byte)) io.Writer
- type CmdOutput
- type FatalError
- type KeyLocks
- type Lockfile
- type MaxRetriesExceeded
- type PathIsNotDirectory
- type PathIsNotFile
- type ProcessExecutionError
- type TrapWriter
Constants ¶
const ( TerraformLockFile = ".terraform.lock.hcl" TerragruntCacheDir = ".terragrunt-cache" DefaultBoilerplateDir = ".boilerplate" TfFileExtension = ".tf" ChecksumReadBlock = 8192 )
const Base62Chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
const UniqueIDLength = 6 // Should be good for 62^6 = 56+ billion combinations
Variables ¶
This section is empty.
Functions ¶
func AsTerraformEnvVarJSONValue ¶
AsTerraformEnvVarJSONValue converts the given value to a JSON value that can be passed to Terraform as an environment variable. For the most part, this converts the value directly to JSON using Go's built-in json.Marshal. However, we have special handling for strings, which with normal JSON conversion would be wrapped in quotes, but when passing them to Terraform via env vars, we need to NOT wrap them in quotes, so this method adds special handling for that case.
func CanonicalPath ¶
CanonicalPath returns the canonical version of the given path, relative to the given base path. That is, if the given path is a relative path, assume it is relative to the given base path. A canonical path is an absolute path with all relative components (e.g. "../") fully resolved, which makes it safe to compare paths as strings.
func CanonicalPaths ¶
CanonicalPaths returns the canonical version of the given paths, relative to the given base path. That is, if a given path is a relative path, assume it is relative to the given base path. A canonical path is an absolute path with all relative components (e.g. "../") fully resolved, which makes it safe to compare paths as strings.
func CleanPath ¶
CleanPath is a wrapper around filepath.Clean.
Use this function when cleaning paths to ensure the returned path uses / as the path separator to improve cross-platform compatibility
func CloneStringList ¶
CloneStringList makes a copy of the given list of strings.
func CloneStringMap ¶
CloneStringMap makes a copy of the given map of strings.
func CommaSeparatedStrings ¶
CommaSeparatedStrings returns an HCL compliant formatted list of strings (each string within double quote)
func ContainsPath ¶
ContainsPath returns true if path contains the given subpath E.g. path="foo/bar/bee", subpath="bar/bee" -> true E.g. path="foo/bar/bee", subpath="bar/be" -> false (because be is not a directory)
func CopyFolderContents ¶
func CopyFolderContents(logger log.Logger, source, destination, manifestFile string, includeInCopy []string) error
CopyFolderContents copies the files and folders within the source folder into the destination folder. Note that hidden files and folders (those starting with a dot) will be skipped. Will create a specified manifest file that contains paths of all copied files.
func CopyFolderContentsWithFilter ¶
func CopyFolderContentsWithFilter(logger log.Logger, source, destination, manifestFile string, filter func(absolutePath string) bool) error
CopyFolderContentsWithFilter copies the files and folders within the source folder into the destination folder.
func DoWithRetry ¶
func DoWithRetry(ctx context.Context, actionDescription string, maxRetries int, sleepBetweenRetries time.Duration, logger log.Logger, logLevel log.Level, action func(ctx context.Context) error) error
DoWithRetry runs the specified action. If it returns a value, return that value. If it returns an error, sleep for sleepBetweenRetries and try again, up to a maximum of maxRetries retries. If maxRetries is exceeded, return a MaxRetriesExceeded error.
func EncodeBase64Sha1 ¶
EncodeBase64Sha1 Returns the base 64 encoded sha1 hash of the given string
func EnsureDirectory ¶
EnsureDirectory creates a directory at this path if it does not exist, or error if the path exists and is a file.
func FileExists ¶
FileExists returns true if the given file exists.
func FileNotExists ¶
FileNotExists returns true if the given file does not exist.
func FileOrData ¶
FileOrData will read the contents of the data of the given arg if it is a file, and otherwise return the contents by itself. This will return an error if the given path is a directory.
func FileSHA256 ¶
FileSHA256 calculates the SHA256 hash of the file at the given path.
func FirstArg ¶
func FirstArg[S ~[]E, E comparable](args S) E
FirstArg is a convenience method that returns the first item (0th index) in the given list or an empty string if this is an empty list.
func GenerateRandomSha256 ¶
func GetCacheDir ¶
GetCacheDir returns the global terragrunt cache directory for the current user.
func GetExcludeDirsFromFile ¶
GetExcludeDirsFromFile returns a list of directories from the given filename, where each directory path starts on a new line.
func GetExitCode ¶
GetExitCode returns the exit code of a command. If the error does not implement iErrorCode or is not an exec.ExitError or *multierror.Error type, the error is returned.
func GetPathRelativeTo ¶
GetPathRelativeTo returns the relative path you would have to take to get from basePath to path.
func GetRandomTime ¶
GetRandomTime gets a random time duration between the lower bound and upper bound. This is useful because some of our automated tests wound up flooding the AWS API all at once, leading to a "Subscriber limit exceeded" error. TODO: Some of the more exotic test cases fail, but it's not worth catching them given the intended use of this function.
func GetTempDir ¶
GetTempDir returns the global terragrunt temp directory.
func GlobCanonicalPath ¶
GlobCanonicalPath returns the canonical versions of the given glob paths, relative to the given base path.
func Grep ¶
Grep returns true if the given regex can be found in any of the files matched by the given glob.
func HasPathPrefix ¶
HasPathPrefix returns true if path starts with the given path prefix E.g. path="/foo/bar/biz", prefix="/foo/bar" -> true E.g. path="/foo/bar/biz", prefix="/foo/ba" -> false (because ba is not a directory path)
func IsCommandExecutable ¶
IsCommandExecutable - returns true if a command can be executed without errors.
func IsDirectoryEmpty ¶
IsDirectoryEmpty - returns true if the given path exists and is a empty directory.
func IsSymLink ¶
IsSymLink returns true if the given file is a symbolic link Per https://stackoverflow.com/a/18062079/2308858
func JoinPath ¶
JoinPath is a wrapper around filepath.Join
Windows systems use \ as the path separator *nix uses / Use this function when joining paths to force the returned path to use / as the path separator This will improve cross-platform compatibility
func JoinTerraformModulePath ¶
JoinTerraformModulePath joins two paths together with a double-slash between them, as this is what Terraform uses to identify where a "repo" ends and a path within the repo begins. Note: The Terraform docs only mention two forward-slashes, so it's not clear if on Windows those should be two back-slashes? https://www.terraform.io/docs/modules/sources.html
func LastArg ¶
func LastArg[S ~[]E, E comparable](args S) E
LastArg is a convenience method that returns the last item in the given list or an empty string if this is an empty list.
func ListContainsElement ¶
func ListContainsElement[S ~[]E, E comparable](list S, element any) bool
ListContainsElement returns true if the given list contains the given element
func ListContainsSublist ¶
func ListContainsSublist[S ~[]E, E comparable](list, sublist S) bool
ListContainsSublist returns true if an instance of the sublist can be found in the given list
func ListEquals ¶
func ListEquals[S ~[]E, E comparable](a, b S) bool
ListEquals returns true if the two lists are equal
func ListHasPrefix ¶
func ListHasPrefix[S ~[]E, E comparable](list, prefix S) bool
ListHasPrefix returns true if list starts with the given prefix list
func ListTfFiles ¶
ListTfFiles returns a list of all TF files in the specified directory.
func MatchSha256Checksum ¶
MatchSha256Checksum returns the SHA256 checksum for the given file and filename.
func MatchesAny ¶
func MustWalkTerraformOutput ¶
func MustWalkTerraformOutput(value interface{}, path ...string) interface{}
MustWalkTerraformOutput is a helper utility to deeply return a value from a terraform output.
nil will be returned if the path is invalid Using an example terraform output: a = { b = { c = "foo" } "d" = [ 1, 2 ] } path ["a", "b", "c"] will return "foo" path ["a", "d", "1"] will return 2 path ["a", "foo"] will return nil
func NewFileManifest ¶
func ReadFileAsString ¶
ReadFileAsString returns the contents of the file at the given path as a string.
func RemoveDuplicatesFromList ¶
func RemoveDuplicatesFromList[S ~[]E, E comparable](list S) S
RemoveDuplicatesFromList returns a copy of the given list with all duplicates removed (keeping the first encountereds)
func RemoveDuplicatesFromListKeepLast ¶
func RemoveDuplicatesFromListKeepLast[S ~[]E, E comparable](list S) S
RemoveDuplicatesFromListKeepLast returns a copy of the given list with all duplicates removed (keeping the last encountereds)
func RemoveElementFromList ¶
func RemoveElementFromList[S ~[]E, E comparable](list S, element E) S
RemoveElementFromList returns a copy of the given list with all instances of the given element removed.
func RemoveSublistFromList ¶
func RemoveSublistFromList[S ~[]E, E comparable](list, sublist S) S
RemoveSublistFromList returns a copy of the given list with all instances of the given sublist removed
func SecondArg ¶
func SecondArg[S ~[]E, E comparable](args S) E
SecondArg is a convenience method that returns the second item (1st index) in the given list or an empty string if this is a list that has less than 2 items in it.
func SplitPath ¶
SplitPath splits the given path into a list. E.g. "foo/bar/boo.txt" -> ["foo", "bar", "boo.txt"] E.g. "/foo/bar/boo.txt" -> ["", "foo", "bar", "boo.txt"] Notice that if path is absolute the resulting list will begin with an empty string.
func SplitUrls ¶
SplitUrls slices s into all substrings separated by sep and returns a slice of the substrings between those separators. Taking into account that the `=` sign can also be used as a git tag, e.g. `git@github.com/test.git?ref=feature`
func StringListInsert ¶
StringListInsert will insert the given string in to the provided string list at the specified index and return the new list of strings. To insert the element, we append the item to the tail of the string and then prepend the existing items.
func TerragruntExcludes ¶
func UniqueID ¶
func UniqueID() string
UniqueID returns a unique (ish) id we can use to name resources so they don't conflict with each other. Uses base 62 to generate a 6 character string that's unlikely to collide with the handful of tests we run in parallel. Based on code here:
http://stackoverflow.com/a/9543797/483528
func WriteFileWithSamePermissions ¶
WriteFileWithSamePermissions writes a file to the given destination with the given contents using the same permissions as the file at source.
Types ¶
type FatalError ¶
type FatalError struct {
Underlying error
}
FatalError is error interface for cases that should not be retried.
func (FatalError) Error ¶
func (err FatalError) Error() string
type KeyLocks ¶
type KeyLocks struct {
// contains filtered or unexported fields
}
KeyLocks manages a map of locks, each associated with a string key.
type Lockfile ¶
func NewLockfile ¶
type MaxRetriesExceeded ¶
MaxRetriesExceeded is an error that occurs when the maximum amount of retries is exceeded.
func (MaxRetriesExceeded) Error ¶
func (err MaxRetriesExceeded) Error() string
type PathIsNotDirectory ¶
type PathIsNotDirectory struct {
// contains filtered or unexported fields
}
PathIsNotDirectory is returned when the given path is unexpectedly not a directory.
func (PathIsNotDirectory) Error ¶
func (err PathIsNotDirectory) Error() string
type PathIsNotFile ¶
type PathIsNotFile struct {
// contains filtered or unexported fields
}
PathIsNotFile is returned when the given path is unexpectedly not a file.
func (PathIsNotFile) Error ¶
func (err PathIsNotFile) Error() string
type ProcessExecutionError ¶
ProcessExecutionError - error returned when a command fails, contains StdOut and StdErr
func (ProcessExecutionError) Error ¶
func (err ProcessExecutionError) Error() string
func (ProcessExecutionError) ExitStatus ¶
func (err ProcessExecutionError) ExitStatus() (int, error)
type TrapWriter ¶
type TrapWriter struct {
// contains filtered or unexported fields
}
TrapWriter intercepts any messages matching `reg` received from the `writer` output, but passes all others. Used when necessary to filter logs from terraform.
func NewTrapWriter ¶
func NewTrapWriter(writer io.Writer, reg *regexp.Regexp) *TrapWriter
NewTrapWriter returns a new TrapWriter instance.
func (*TrapWriter) Msgs ¶
func (trap *TrapWriter) Msgs() []string
Msgs returns the intercepted messages.