fix(ui): changes for update credetials for AliababaCloud provider (#10098)

This commit is contained in:
Pedro Martín
2026-02-17 15:50:02 +01:00
committed by GitHub
parent 04b43b20ae
commit ff25d6a8c2
2 changed files with 13 additions and 1 deletions

View File

@@ -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

View File

@@ -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 <SelectViaM365 initialVia={initialVia} />;
}
if (providerType === "alibabacloud") {
return <SelectViaAlibabaCloud initialVia={initialVia} />;
}
return null;
};