terraform/terraform/path.go

11 lines
173 B
Go

package terraform
import (
"strings"
)
// PathCacheKey returns a cache key for a module path.
func PathCacheKey(path []string) string {
return strings.Join(path, "|")
}