mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-02-09 02:30:43 +00:00
feat(ui): add Oracle Cloud Infrastructure (OCI) provider support (#8984)
This commit is contained in:
@@ -10,6 +10,7 @@ import {
|
||||
GitHubProviderBadge,
|
||||
KS8ProviderBadge,
|
||||
M365ProviderBadge,
|
||||
OracleCloudProviderBadge,
|
||||
} from "@/components/icons/providers-badge";
|
||||
import { CustomButton } from "@/components/ui/custom/custom-button";
|
||||
import { ProviderOverviewProps } from "@/types";
|
||||
@@ -37,6 +38,8 @@ export const ProvidersOverview = ({
|
||||
return <KS8ProviderBadge width={30} height={30} />;
|
||||
case "github":
|
||||
return <GitHubProviderBadge width={30} height={30} />;
|
||||
case "oci":
|
||||
return <OracleCloudProviderBadge width={30} height={30} />;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
@@ -49,6 +52,7 @@ export const ProvidersOverview = ({
|
||||
gcp: "GCP",
|
||||
kubernetes: "Kubernetes",
|
||||
github: "GitHub",
|
||||
oci: "OCI",
|
||||
};
|
||||
|
||||
const providers = PROVIDER_TYPES.map((providerType) => ({
|
||||
|
||||
Reference in New Issue
Block a user