Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changes/unreleased/BUG FIXES-20251222-200736.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kind: BUG FIXES
body: change severity level for yandex function and serverless container
time: 2025-12-22T20:07:36.738832+03:00
2 changes: 1 addition & 1 deletion yandex/resource_yandex_function.go
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ func resourceYandexFunctionDiagsFromCreateVersionError(err error) diag.Diagnosti
return nil
}
return diag.Diagnostics{diag.Diagnostic{
Severity: diag.Warning,
Severity: diag.Error,
Summary: "Failed to create version for Yandex Cloud Function",
Detail: "Error while requesting API to create version for Yandex Cloud Function. " +
"After resolving following issues apply resource again to create version for Yandex Cloud Function:\n" +
Expand Down
2 changes: 1 addition & 1 deletion yandex/resource_yandex_serverless_container.go
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ func resourceYandexServerlessContainerDiagsFromDeployRevisionError(err error) di
return nil
}
return diag.Diagnostics{diag.Diagnostic{
Severity: diag.Warning,
Severity: diag.Error,
Summary: "Failed to deploy revision for Yandex Cloud Container",
Detail: "Error while requesting API to deploy revision for Yandex Cloud Container. " +
"After resolving following issues apply resource again to deploy revision for Yandex Cloud Container:\n" +
Expand Down