2018-02-10 00:32:49 +01:00
package configload
import (
"fmt"
version "github.com/hashicorp/go-version"
2019-09-10 00:58:44 +02:00
"github.com/hashicorp/hcl/v2"
2021-05-17 21:17:09 +02:00
"github.com/hashicorp/terraform/internal/configs"
2018-02-10 00:32:49 +01:00
)
// LoadConfig reads the Terraform module in the given directory and uses it as the
// root module to build the static module tree that represents a configuration,
// assuming that all required descendent modules have already been installed.
//
// If error diagnostics are returned, the returned configuration may be either
// nil or incomplete. In the latter case, cautious static analysis is possible
// in spite of the errors.
//
// LoadConfig performs the basic syntax and uniqueness validations that are
2020-05-08 17:35:28 +02:00
// required to process the individual modules
2018-02-10 00:32:49 +01:00
func ( l * Loader ) LoadConfig ( rootDir string ) ( * configs . Config , hcl . Diagnostics ) {
rootMod , diags := l . parser . LoadConfigDir ( rootDir )
2021-05-07 17:52:06 +02:00
if rootMod == nil || diags . HasErrors ( ) {
2018-02-10 00:32:49 +01:00
return nil , diags
}
cfg , cDiags := configs . BuildConfig ( rootMod , configs . ModuleWalkerFunc ( l . moduleWalkerLoad ) )
diags = append ( diags , cDiags ... )
return cfg , diags
}
// moduleWalkerLoad is a configs.ModuleWalkerFunc for loading modules that
2020-05-08 17:35:28 +02:00
// are presumed to have already been installed.
2018-02-10 00:32:49 +01:00
func ( l * Loader ) moduleWalkerLoad ( req * configs . ModuleRequest ) ( * configs . Module , * version . Version , hcl . Diagnostics ) {
// Since we're just loading here, we expect that all referenced modules
// will be already installed and described in our manifest. However, we
// do verify that the manifest and the configuration are in agreement
// so that we can prompt the user to run "terraform init" if not.
2019-01-09 03:39:14 +01:00
key := l . modules . manifest . ModuleKey ( req . Path )
2018-02-10 00:32:49 +01:00
record , exists := l . modules . manifest [ key ]
if ! exists {
return nil , nil , hcl . Diagnostics {
{
Severity : hcl . DiagError ,
Summary : "Module not installed" ,
Detail : "This module is not yet installed. Run \"terraform init\" to install all modules required by this configuration." ,
Subject : & req . CallRange ,
} ,
}
}
var diags hcl . Diagnostics
// Check for inconsistencies between manifest and config
Refactoring of module source addresses and module installation
It's been a long while since we gave close attention to the codepaths for
module source address parsing and external module package installation.
Due to their age, these codepaths often diverged from our modern practices
such as representing address types in the addrs package, and encapsulating
package installation details only in a particular location.
In particular, this refactor makes source address parsing a separate step
from module installation, which therefore makes the result of that parsing
available to other Terraform subsystems which work with the configuration
representation objects.
This also presented the opportunity to better encapsulate our use of
go-getter into a new package "getmodules" (echoing "getproviders"), which
is intended to be the only part of Terraform that directly interacts with
go-getter.
This is largely just a refactor of the existing functionality into a new
code organization, but there is one notable change in behavior here: the
source address parsing now happens during configuration loading rather
than module installation, which may cause errors about invalid addresses
to be returned in different situations than before. That counts as
backward compatible because we only promise to remain compatible with
configurations that are _valid_, which means that they can be initialized,
planned, and applied without any errors. This doesn't introduce any new
error cases, and instead just makes a pre-existing error case be detected
earlier.
Our module registry client is still using its own special module address
type from registry/regsrc for now, with a small shim from the new
addrs.ModuleSourceRegistry type. Hopefully in a later commit we'll also
rework the registry client to work with the new address type, but this
commit is already big enough as it is.
2021-05-28 04:24:59 +02:00
if req . SourceAddr . String ( ) != record . SourceAddr {
2018-02-10 00:32:49 +01:00
diags = append ( diags , & hcl . Diagnostic {
Severity : hcl . DiagError ,
Summary : "Module source has changed" ,
Detail : "The source address was changed since this module was installed. Run \"terraform init\" to install all modules required by this configuration." ,
Subject : & req . SourceAddrRange ,
} )
}
2019-06-03 17:55:43 +02:00
if len ( req . VersionConstraint . Required ) > 0 && record . Version == nil {
diags = append ( diags , & hcl . Diagnostic {
Severity : hcl . DiagError ,
Summary : "Module version requirements have changed" ,
Detail : "The version requirements have changed since this module was installed and the installed version is no longer acceptable. Run \"terraform init\" to install all modules required by this configuration." ,
Subject : & req . SourceAddrRange ,
} )
}
if record . Version != nil && ! req . VersionConstraint . Required . Check ( record . Version ) {
2018-02-10 00:32:49 +01:00
diags = append ( diags , & hcl . Diagnostic {
Severity : hcl . DiagError ,
Summary : "Module version requirements have changed" ,
Detail : fmt . Sprintf (
"The version requirements have changed since this module was installed and the installed version (%s) is no longer acceptable. Run \"terraform init\" to install all modules required by this configuration." ,
record . Version ,
) ,
Subject : & req . SourceAddrRange ,
} )
}
mod , mDiags := l . parser . LoadConfigDir ( record . Dir )
diags = append ( diags , mDiags ... )
if mod == nil {
// nil specifically indicates that the directory does not exist or
// cannot be read, so in this case we'll discard any generic diagnostics
// returned from LoadConfigDir and produce our own context-sensitive
// error message.
return nil , nil , hcl . Diagnostics {
{
Severity : hcl . DiagError ,
Summary : "Module not installed" ,
Detail : fmt . Sprintf ( "This module's local cache directory %s could not be read. Run \"terraform init\" to install all modules required by this configuration." , record . Dir ) ,
Subject : & req . CallRange ,
} ,
}
}
2020-06-16 19:52:41 +02:00
return mod , record . Version , diags
}