diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md
index 0ae65f8591..adef38006e 100644
--- a/ui/CHANGELOG.md
+++ b/ui/CHANGELOG.md
@@ -20,7 +20,15 @@ All notable changes to the **Prowler UI** are documented in this file.
---
-## [1.18.2] (Prowler UNRELEASED)
+## [1.18.3] (Prowler UNRELEASED)
+
+### 🐞 Fixed
+
+- Update credentials for the Alibaba Cloud provider [(#10098)](https://github.com/prowler-cloud/prowler/pull/10098)
+
+---
+
+## [1.18.2] (Prowler v5.18.2)
### 🐞 Fixed
diff --git a/ui/components/providers/credentials-update-info.tsx b/ui/components/providers/credentials-update-info.tsx
index 3fb13f97a7..bd99f594d9 100644
--- a/ui/components/providers/credentials-update-info.tsx
+++ b/ui/components/providers/credentials-update-info.tsx
@@ -1,5 +1,6 @@
"use client";
+import { SelectViaAlibabaCloud } from "@/components/providers/workflow/forms/select-credentials-type/alibabacloud";
import { SelectViaAWS } from "@/components/providers/workflow/forms/select-credentials-type/aws";
import { SelectViaGCP } from "@/components/providers/workflow/forms/select-credentials-type/gcp";
import { SelectViaGitHub } from "@/components/providers/workflow/forms/select-credentials-type/github";
@@ -28,6 +29,9 @@ export const CredentialsUpdateInfo = ({
if (providerType === "m365") {
return ;
}
+ if (providerType === "alibabacloud") {
+ return ;
+ }
return null;
};