You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return0, diags.Append(fmt.Errorf("Unable to determine if state storage provider is reattached while hashing state store configuration. This is a bug in Terraform and should be reported: %w", err))
215
+
}
216
+
217
+
if (b.ProviderAddr.Hostname!=tfaddr.BuiltInProviderHost) &&
218
+
!isReattached {
219
+
return0, diags.Append(&hcl.Diagnostic{
220
+
Severity: hcl.DiagError,
221
+
Summary: "Unable to calculate hash of state store configuration",
222
+
Detail: "Provider version data was missing during hash generation. This is a bug in Terraform and should be reported.",
223
+
})
224
+
}
225
+
226
+
// Version information can be empty but only if the provider is builtin or unmanaged by Terraform
227
+
providerVersionString=""
211
228
} else {
212
-
providerVersionString=""// It's valid for no version to be present if the provider is builtin or reattached
0 commit comments