Merge pull request #1833 from hashicorp/b-resource-test-warnings-are-ok

helper/resource: don't fail test on config warnings
This commit is contained in:
Paul Hinze 2015-05-06 13:22:07 -05:00
commit fa04dfa731
1 changed files with 9 additions and 6 deletions

View File

@ -209,13 +209,16 @@ func testStep(
opts.Destroy = step.Destroy
ctx := terraform.NewContext(&opts)
if ws, es := ctx.Validate(); len(ws) > 0 || len(es) > 0 {
estrs := make([]string, len(es))
for i, e := range es {
estrs[i] = e.Error()
if len(es) > 0 {
estrs := make([]string, len(es))
for i, e := range es {
estrs[i] = e.Error()
}
return state, fmt.Errorf(
"Configuration is invalid.\n\nWarnings: %#v\n\nErrors: %#v",
ws, estrs)
}
return state, fmt.Errorf(
"Configuration is invalid.\n\nWarnings: %#v\n\nErrors: %#v",
ws, estrs)
log.Printf("[WARN] Config warnings: %#v", ws)
}
// Refresh!