Checkpoint signature fixes

- Currently the disable_checkpoint setting from $HOME/.terraformrc is never
respsected due to:
-- The runCheckpoint go routine being fired off prior to loading configuration
-- The config.Merge method not actually merging in the c2s settings
This commit is contained in:
Justin Nauman 2016-11-17 17:51:41 -06:00
parent 3920460220
commit bf48d0132c
2 changed files with 20 additions and 18 deletions

View File

@ -183,6 +183,8 @@ func (c1 *Config) Merge(c2 *Config) *Config {
} }
result.Provisioners[k] = v result.Provisioners[k] = v
} }
result.DisableCheckpoint = c1.DisableCheckpoint || c2.DisableCheckpoint
result.DisableCheckpointSignature = c1.DisableCheckpointSignature || c2.DisableCheckpointSignature
return &result return &result
} }

36
main.go
View File

@ -103,6 +103,24 @@ func wrappedMain() int {
return 1 return 1
} }
// Load the configuration file if we have one, that can be used to
// define extra providers and provisioners.
clicfgFile, err := cliConfigFile()
if err != nil {
Ui.Error(fmt.Sprintf("Error loading CLI configuration: \n\n%s", err))
return 1
}
if clicfgFile != "" {
usrcfg, err := LoadConfig(clicfgFile)
if err != nil {
Ui.Error(fmt.Sprintf("Error loading CLI configuration: \n\n%s", err))
return 1
}
config = *config.Merge(usrcfg)
}
// Run checkpoint // Run checkpoint
go runCheckpoint(&config) go runCheckpoint(&config)
@ -129,24 +147,6 @@ func wrappedMain() int {
HelpWriter: os.Stdout, HelpWriter: os.Stdout,
} }
// Load the configuration file if we have one, that can be used to
// define extra providers and provisioners.
clicfgFile, err := cliConfigFile()
if err != nil {
Ui.Error(fmt.Sprintf("Error loading CLI configuration: \n\n%s", err))
return 1
}
if clicfgFile != "" {
usrcfg, err := LoadConfig(clicfgFile)
if err != nil {
Ui.Error(fmt.Sprintf("Error loading CLI configuration: \n\n%s", err))
return 1
}
config = *config.Merge(usrcfg)
}
// Initialize the TFConfig settings for the commands... // Initialize the TFConfig settings for the commands...
ContextOpts.Providers = config.ProviderFactories() ContextOpts.Providers = config.ProviderFactories()
ContextOpts.Provisioners = config.ProvisionerFactories() ContextOpts.Provisioners = config.ProvisionerFactories()