Rename microsoft365 to m365

This commit is contained in:
Chandrapal Badshah
2025-04-24 17:51:22 +05:30
parent ae6f6369c8
commit c171a100ca
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -883,7 +883,7 @@ const checksByProvider = async (provider_type: string) => {
"scheduler_bind_address",
"scheduler_profiling",
],
microsoft365: [
m365: [
"admincenter_groups_not_public_visibility",
"admincenter_settings_password_never_expire",
"admincenter_users_admins_reduced_license_footprint",
@@ -62,7 +62,7 @@ export const complianceFrameworksByProvider = async (provider_type: string) => {
"iso27001_2022_kubernetes",
"pci_4.0_kubernetes",
],
microsoft365: ["cis_4.0_microsoft365"],
m365: ["cis_4.0_microsoft365"],
};
return complianceFrameworks[provider_type as ProviderType] || [];
};
+1 -1
View File
@@ -1,5 +1,5 @@
import { z } from "zod";
export const checkSchema = z.object({
provider_type: z.enum(["aws", "gcp", "azure", "kubernetes", "microsoft365"]),
provider_type: z.enum(["aws", "gcp", "azure", "kubernetes", "m365"]),
});