Skip to content

Commit c08d420

Browse files
fix(ui): changes for update credetials for AliababaCloud provider (#10099)
Co-authored-by: Pedro Martín <pedromarting3@gmail.com>
1 parent c1244ea commit c08d420

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

ui/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to the **Prowler UI** are documented in this file.
44

5+
## [1.18.3] (Prowler UNRELEASED)
6+
7+
### 🐞 Fixed
8+
9+
- Update credentials for the Alibaba Cloud provider [(#10098)](https://github.com/prowler-cloud/prowler/pull/10098)
10+
11+
---
12+
513
## [1.18.2] (Prowler v5.18.2)
614

715
### 🐞 Fixed

ui/components/providers/credentials-update-info.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use client";
22

3+
import { SelectViaAlibabaCloud } from "@/components/providers/workflow/forms/select-credentials-type/alibabacloud";
34
import { SelectViaAWS } from "@/components/providers/workflow/forms/select-credentials-type/aws";
45
import { SelectViaGCP } from "@/components/providers/workflow/forms/select-credentials-type/gcp";
56
import { SelectViaGitHub } from "@/components/providers/workflow/forms/select-credentials-type/github";
@@ -28,6 +29,9 @@ export const CredentialsUpdateInfo = ({
2829
if (providerType === "m365") {
2930
return <SelectViaM365 initialVia={initialVia} />;
3031
}
32+
if (providerType === "alibabacloud") {
33+
return <SelectViaAlibabaCloud initialVia={initialVia} />;
34+
}
3135
return null;
3236
};
3337

0 commit comments

Comments
 (0)