From 7b5efad725034467d6d5612d574ae2a08a195e39 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Tue, 3 Apr 2018 17:40:36 -0400 Subject: [PATCH] update missing alias message Update the old error message for a missing provider alias, as we no longer automatically inherit providers. --- config/module/validate_provider_alias.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/module/validate_provider_alias.go b/config/module/validate_provider_alias.go index 090d4f7e3..f203556c1 100644 --- a/config/module/validate_provider_alias.go +++ b/config/module/validate_provider_alias.go @@ -67,7 +67,7 @@ func (t *Tree) validateProviderAlias() error { // We didn't find the alias, error! err = multierror.Append(err, fmt.Errorf( - "module %s: provider alias must be defined by the module or a parent: %s", + "module %s: provider alias must be defined by the module: %s", strings.Join(pv.Path, "."), k)) } }