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
"An unexpected error was encountered trying to write the "+d.Description.String()+". This is always an error in the provider. Please report the following to the provider developer:\n\n"+
28
+
fmt.Sprintf("Error: Type mismatch between provided value and type of %s", d.Description.String()),
"An unexpected error was encountered trying to write the "+d.Description.String()+". This is always an error in the provider. Please report the following to the provider developer:\n\n"+
40
+
fmt.Sprintf("Error: %s does not exist at path", path.String()),
41
+
)
42
+
returndiags
43
+
}
44
+
45
+
attrType:=atPath.GetType().TerraformType(ctx)
46
+
47
+
if!attrType.Equal(v.Type()) {
48
+
diags.AddAttributeError(
49
+
path,
50
+
d.Description.Title()+" Write Error",
51
+
"An unexpected error was encountered trying to write the "+d.Description.String()+". This is always an error in the provider. Please report the following to the provider developer:\n\n"+
52
+
fmt.Sprintf("Error: Type of provided value does not match type of %s", path.String()),
0 commit comments