mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
return state even if cfg is invalid
This commit is contained in:
parent
8c54da0ad2
commit
7edbb3c8bf
@ -53,7 +53,7 @@ func testStep(opts terraform.ContextOpts, state *terraform.State, step TestStep,
|
||||
}
|
||||
if stepDiags := ctx.Validate(); len(stepDiags) > 0 {
|
||||
if stepDiags.HasErrors() {
|
||||
return nil, errwrap.Wrapf("config is invalid: {{err}}", stepDiags.Err())
|
||||
return state, errwrap.Wrapf("config is invalid: {{err}}", stepDiags.Err())
|
||||
}
|
||||
|
||||
log.Printf("[WARN] Config warnings:\n%s", stepDiags)
|
||||
|
Loading…
Reference in New Issue
Block a user