Unverified Commit 9e269858 authored by UKEME BASSEY's avatar UKEME BASSEY Committed by GitHub
Browse files

Merge pull request #30780 from hashicorp/uk1288/backport-cloud-integration-panic-fix

backport cloud integration panic fix
parents cdb01a87 bfa7c674
Showing with 3 additions and 0 deletions
+3 -0
......@@ -320,6 +320,9 @@ func (m *Meta) BackendForPlan(settings plans.Backend) (backend.Enhanced, tfdiags
configureDiags := b.Configure(newVal)
diags = diags.Append(configureDiags)
if configureDiags.HasErrors() {
return nil, diags
}
// If the backend supports CLI initialization, do it.
if cli, ok := b.(backend.CLI); ok {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment