├── .github ├── ISSUE_TEMPLATE │ ├── 01--content-request.yml │ ├── 02--feature-request.yml │ ├── 03--bug-report.yml │ ├── 04--documentation-issue.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── get_aprl │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ ├── entrypoint.py │ │ └── requirements.txt │ ├── get_service_guides │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ ├── entrypoint.py │ │ └── requirements.txt │ ├── get_the_aks_checklist │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ ├── entrypoint.py │ │ └── requirements.txt │ └── review-checklists-lint │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ └── entrypoint.sh └── workflows │ ├── get_aprl.yml │ ├── get_theakschecklist.yml │ ├── get_waf_sg.yml │ ├── linter.yml │ ├── transform.ps1 │ └── translate.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── checklists-ext ├── appservicewebapps_sg_checklist.en.json ├── appservicewebapps_sg_checklist.es.json ├── appservicewebapps_sg_checklist.ja.json ├── appservicewebapps_sg_checklist.ko.json ├── appservicewebapps_sg_checklist.pt.json ├── appservicewebapps_sg_checklist.zh-Hant.json ├── aprl_checklist.en.json ├── azureapplicationgateway_sg_checklist.en.json ├── azureapplicationgateway_sg_checklist.es.json ├── azureapplicationgateway_sg_checklist.ja.json ├── azureapplicationgateway_sg_checklist.ko.json ├── azureapplicationgateway_sg_checklist.pt.json ├── azureapplicationgateway_sg_checklist.zh-Hant.json ├── azureblobstorage_sg_checklist.en.json ├── azureblobstorage_sg_checklist.es.json ├── azureblobstorage_sg_checklist.ja.json ├── azureblobstorage_sg_checklist.ko.json ├── azureblobstorage_sg_checklist.pt.json ├── azureblobstorage_sg_checklist.zh-Hant.json ├── azureexpressroute_sg_checklist.en.json ├── azureexpressroute_sg_checklist.es.json ├── azureexpressroute_sg_checklist.ja.json ├── azureexpressroute_sg_checklist.ko.json ├── azureexpressroute_sg_checklist.pt.json ├── azureexpressroute_sg_checklist.zh-Hant.json ├── azurefiles_sg_checklist.en.json ├── azurefiles_sg_checklist.es.json ├── azurefiles_sg_checklist.ja.json ├── azurefiles_sg_checklist.ko.json ├── azurefiles_sg_checklist.pt.json ├── azurefiles_sg_checklist.zh-Hant.json ├── azurefirewall_sg_checklist.en.json ├── azurefirewall_sg_checklist.es.json ├── azurefirewall_sg_checklist.ja.json ├── azurefirewall_sg_checklist.ko.json ├── azurefirewall_sg_checklist.pt.json ├── azurefirewall_sg_checklist.zh-Hant.json ├── azurefrontdoor_sg_checklist.en.json ├── azurefrontdoor_sg_checklist.es.json ├── azurefrontdoor_sg_checklist.ja.json ├── azurefrontdoor_sg_checklist.ko.json ├── azurefrontdoor_sg_checklist.pt.json ├── azurefrontdoor_sg_checklist.zh-Hant.json ├── azurekubernetesservice_sg_checklist.en.json ├── azurekubernetesservice_sg_checklist.es.json ├── azurekubernetesservice_sg_checklist.ja.json ├── azurekubernetesservice_sg_checklist.ko.json ├── azurekubernetesservice_sg_checklist.pt.json ├── azurekubernetesservice_sg_checklist.zh-Hant.json ├── azuremachinelearning_sg_checklist.en.json ├── azuremachinelearning_sg_checklist.es.json ├── azuremachinelearning_sg_checklist.ja.json ├── azuremachinelearning_sg_checklist.ko.json ├── azuremachinelearning_sg_checklist.pt.json ├── azuremachinelearning_sg_checklist.zh-Hant.json ├── azureopenai_sg_checklist.en.json ├── azureopenai_sg_checklist.es.json ├── azureopenai_sg_checklist.ja.json ├── azureopenai_sg_checklist.ko.json ├── azureopenai_sg_checklist.pt.json ├── azureopenai_sg_checklist.zh-Hant.json ├── fullwaf_checklist.en.json ├── theaks_checklist.en.json ├── theaks_checklist.es.json ├── theaks_checklist.ja.json ├── theaks_checklist.ko.json ├── theaks_checklist.pt.json ├── theaks_checklist.zh-Hant.json ├── virtualmachines_sg_checklist.en.json ├── virtualmachines_sg_checklist.es.json ├── virtualmachines_sg_checklist.ja.json ├── virtualmachines_sg_checklist.ko.json ├── virtualmachines_sg_checklist.pt.json ├── virtualmachines_sg_checklist.zh-Hant.json ├── wafsg_checklist.en.json ├── wafsg_checklist.es.json ├── wafsg_checklist.ja.json ├── wafsg_checklist.ko.json ├── wafsg_checklist.pt.json └── wafsg_checklist.zh-Hant.json ├── checklists ├── README.md ├── acr_checklist.en.json ├── acr_checklist.es.json ├── acr_checklist.ja.json ├── acr_checklist.ko.json ├── acr_checklist.pt.json ├── acr_checklist.zh-Hant.json ├── adf_checklist.en.json ├── adf_checklist.es.json ├── adf_checklist.ja.json ├── adf_checklist.ko.json ├── adf_checklist.pt.json ├── adf_checklist.zh-Hant.json ├── ado_checklist.en.json ├── ado_checklist.es.json ├── ado_checklist.ja.json ├── ado_checklist.ko.json ├── ado_checklist.pt.json ├── ado_checklist.zh-Hant.json ├── adx_checklist.en.json ├── afd_checklist.en.json ├── afd_checklist.es.json ├── afd_checklist.ja.json ├── afd_checklist.ko.json ├── afd_checklist.pt.json ├── afd_checklist.zh-Hant.json ├── ai_lz_checklist.en.json ├── ai_lz_checklist.es.json ├── ai_lz_checklist.ja.json ├── ai_lz_checklist.ko.json ├── ai_lz_checklist.pt.json ├── ai_lz_checklist.zh-Hant.json ├── aks_checklist.en.json ├── aks_checklist.es.json ├── aks_checklist.ja.json ├── aks_checklist.ko.json ├── aks_checklist.pt.json ├── aks_checklist.zh-Hant.json ├── alz_checklist.en.json ├── alz_checklist.es.json ├── alz_checklist.ja.json ├── alz_checklist.ko.json ├── alz_checklist.pt.json ├── alz_checklist.zh-Hant.json ├── apim_checklist.en.json ├── apim_checklist.es.json ├── apim_checklist.ja.json ├── apim_checklist.ko.json ├── apim_checklist.pt.json ├── apim_checklist.zh-Hant.json ├── appsvc_checklist.en.json ├── appsvc_checklist.es.json ├── appsvc_checklist.ja.json ├── appsvc_checklist.ko.json ├── appsvc_checklist.pt.json ├── appsvc_checklist.zh-Hant.json ├── aro_checklist.en.json ├── aro_checklist.es.json ├── aro_checklist.ja.json ├── aro_checklist.ko.json ├── aro_checklist.pt.json ├── aro_checklist.zh-Hant.json ├── avd_checklist.en.json ├── avd_checklist.es.json ├── avd_checklist.ja.json ├── avd_checklist.ko.json ├── avd_checklist.pt.json ├── avs_checklist.en.json ├── avs_checklist.es.json ├── avs_checklist.ja.json ├── avs_checklist.ko.json ├── avs_checklist.pt.json ├── avs_checklist.zh-Hant.json ├── avs_implementation_checklist.en.json ├── avs_implementation_checklist.es.json ├── avs_implementation_checklist.ja.json ├── avs_implementation_checklist.ko.json ├── avs_implementation_checklist.pt.json ├── azfun_checklist.en.json ├── azfun_checklist.es.json ├── azfun_checklist.ja.json ├── azfun_checklist.ko.json ├── azfun_checklist.pt.json ├── azfun_checklist.zh-Hant.json ├── azure_arc_checklist.en.json ├── azure_arc_checklist.es.json ├── azure_arc_checklist.ja.json ├── azure_arc_checklist.ko.json ├── azure_arc_checklist.pt.json ├── azure_arc_checklist.zh-Hant.json ├── azure_storage_checklist.en.json ├── azure_storage_checklist.es.json ├── azure_storage_checklist.ja.json ├── azure_storage_checklist.ko.json ├── azure_storage_checklist.pt.json ├── azure_storage_checklist.zh-Hant.json ├── azurebotservice_checklist.en.json ├── azurebotservice_checklist.es.json ├── azurebotservice_checklist.ja.json ├── azurebotservice_checklist.ko.json ├── azurebotservice_checklist.pt.json ├── azurebotservice_checklist.zh-Hant.json ├── azurespringapps_checklist.en.json ├── azurespringapps_checklist.es.json ├── azurespringapps_checklist.ja.json ├── azurespringapps_checklist.ko.json ├── azurespringapps_checklist.pt.json ├── azurespringapps_checklist.zh-Hant.json ├── blob_storage_checklist.es.json ├── blob_storage_checklist.ja.json ├── blob_storage_checklist.ko.json ├── blob_storage_checklist.pt.json ├── blob_storage_checklist.zh-Hant.json ├── checklist.en.master.json ├── checklist.schema.json ├── container_apps_checklist.en.json ├── container_apps_checklist.es.json ├── container_apps_checklist.ja.json ├── container_apps_checklist.ko.json ├── container_apps_checklist.pt.json ├── container_apps_checklist.zh-Hant.json ├── cosmosdb_checklist.en.json ├── cost_checklist.en.json ├── cost_checklist.es.json ├── cost_checklist.ja.json ├── cost_checklist.ko.json ├── cost_checklist.pt.json ├── cost_checklist.zh-Hant.json ├── databricks_checklist.en.json ├── databricks_checklist.es.json ├── databricks_checklist.ja.json ├── databricks_checklist.ko.json ├── databricks_checklist.pt.json ├── databricks_checklist.zh-Hant.json ├── datasecurity_checklist.en.json ├── datasecurity_checklist.es.json ├── datasecurity_checklist.ja.json ├── datasecurity_checklist.ko.json ├── datasecurity_checklist.pt.json ├── datasecurity_checklist.zh-Hant.json ├── device_provisioning_service_checklist.en.json ├── device_provisioning_service_checklist.es.json ├── device_provisioning_service_checklist.ja.json ├── device_provisioning_service_checklist.ko.json ├── device_provisioning_service_checklist.pt.json ├── device_provisioning_service_checklist.zh-Hant.json ├── device_update_checklist.en.json ├── dns_checklist.en.json ├── eh_checklist.en.json ├── eh_checklist.es.json ├── eh_checklist.ja.json ├── eh_checklist.ko.json ├── eh_checklist.pt.json ├── eh_checklist.zh-Hant.json ├── hci_checklist.en.json ├── hci_checklist.es.json ├── hci_checklist.ja.json ├── hci_checklist.ko.json ├── hci_checklist.pt.json ├── identity_checklist.en.json ├── identity_checklist.es.json ├── identity_checklist.ja.json ├── identity_checklist.ko.json ├── identity_checklist.pt.json ├── identity_checklist.zh-Hant.json ├── iot_hub_checklist.en.json ├── iot_hub_checklist.es.json ├── iot_hub_checklist.ja.json ├── iot_hub_checklist.ko.json ├── iot_hub_checklist.pt.json ├── iot_hub_checklist.zh-Hant.json ├── keyvault_checklist.en.json ├── keyvault_checklist.es.json ├── keyvault_checklist.ja.json ├── keyvault_checklist.ko.json ├── keyvault_checklist.pt.json ├── keyvault_checklist.zh-Hant.json ├── logic_app_checklist.en.json ├── logic_app_checklist.es.json ├── logic_app_checklist.ja.json ├── logic_app_checklist.ko.json ├── logic_app_checklist.pt.json ├── logic_app_checklist.zh-Hant.json ├── multitenancy_checklist.en.json ├── multitenancy_checklist.es.json ├── multitenancy_checklist.ja.json ├── multitenancy_checklist.ko.json ├── multitenancy_checklist.pt.json ├── multitenancy_checklist.zh-Hant.json ├── mysql_checklist.en.json ├── mysql_checklist.es.json ├── mysql_checklist.ja.json ├── mysql_checklist.ko.json ├── mysql_checklist.pt.json ├── mysql_checklist.zh-Hant.json ├── network_appdelivery_checklist.en.json ├── network_appdelivery_checklist.es.json ├── network_appdelivery_checklist.ja.json ├── network_appdelivery_checklist.ko.json ├── network_appdelivery_checklist.pt.json ├── network_appdelivery_checklist.zh-Hant.json ├── postgreSQL_checklist.en.json ├── purview_checklist.en.json ├── recoveryservicesvault_checklist.en.json ├── redis_checklist.en.json ├── redis_checklist.es.json ├── redis_checklist.ja.json ├── redis_checklist.ko.json ├── redis_checklist.pt.json ├── redis_checklist.zh-Hant.json ├── resiliency_checklist.en.json ├── resiliency_checklist.es.json ├── resiliency_checklist.ja.json ├── resiliency_checklist.ko.json ├── resiliency_checklist.pt.json ├── sap_checklist.en.json ├── sap_checklist.es.json ├── sap_checklist.ja.json ├── sap_checklist.ko.json ├── sap_checklist.pt.json ├── sap_checklist.zh-Hant.json ├── security_checklist.en.json ├── security_checklist.es.json ├── security_checklist.ja.json ├── security_checklist.ko.json ├── security_checklist.pt.json ├── security_checklist.zh-Hant.json ├── servicebus_checklist.en.json ├── servicebus_checklist.es.json ├── servicebus_checklist.ja.json ├── servicebus_checklist.ko.json ├── servicebus_checklist.pt.json ├── servicebus_checklist.zh-Hant.json ├── servicefabric_checklist.en.json ├── sql_checklist.en.json ├── sql_checklist.es.json ├── sql_checklist.ja.json ├── sql_checklist.ko.json ├── sql_checklist.pt.json ├── sql_checklist.zh-Hant.json ├── sqldb_checklist.en.json ├── sqldb_checklist.es.json ├── sqldb_checklist.ja.json ├── sqldb_checklist.ko.json ├── sqldb_checklist.pt.json ├── sqldb_checklist.zh-Hant.json ├── streamanalytics_checklist.en.json ├── streamanalytics_checklist.es.json ├── streamanalytics_checklist.ja.json ├── streamanalytics_checklist.ko.json ├── streamanalytics_checklist.pt.json ├── streamanalytics_checklist.zh-Hant.json ├── synapse_checklist.en.json ├── template.json ├── waf_checklist.en.json ├── waf_checklist.es.json ├── waf_checklist.ja.json ├── waf_checklist.ko.json ├── waf_checklist.pt.json └── waf_checklist.zh-Hant.json ├── pictures ├── advanced_buttons.png ├── defender_settings.png ├── defender_settings_1.png ├── defender_settings_2.png ├── defender_settings_3.png ├── defender_settings_4.png ├── flaskmysql_screenshot.png ├── graph_import_result.png ├── header.png ├── high_level_web_based_view.png ├── macro_warning.png ├── overview.png ├── spreadsheet_paste_query_result.png ├── spreadsheet_screenshot.png ├── spreadsheet_screenshot2.png ├── spreadsheet_screenshot_dashboard.png └── unblock.png ├── scripts ├── README.md ├── aks_graph_results.json ├── checklist_arg2policy.sh ├── checklist_graph.sh ├── checklist_graph_update.ps1 ├── checklist_graph_update.py ├── compile_checklist.py ├── create_master_checklist.py ├── find_duplicate_guids.ps1 ├── merge_waf_checklists.py ├── process_checklist.sh ├── service_dictionary.json ├── sort_checklist.py ├── timestamp_checklist.py ├── translate.py ├── update_excel_openpyxl.py ├── upload2cosmosdb.py ├── upload2tablestorage.py ├── verify_checklist.py ├── waf_recos.json └── workbook_create.py ├── spreadsheet ├── JsonConverter.bas ├── README.md ├── Sheet1.vb ├── macrofree │ ├── acr_checklist.en.xlsx │ ├── acr_checklist.es.xlsx │ ├── acr_checklist.ja.xlsx │ ├── acr_checklist.ko.xlsx │ ├── acr_checklist.pt.xlsx │ ├── acr_checklist.zh-Hant.xlsx │ ├── acr_security_checklist.en.xlsx │ ├── acr_security_checklist.es.xlsx │ ├── acr_security_checklist.ja.xlsx │ ├── acr_security_checklist.ko.xlsx │ ├── acr_security_checklist.pt.xlsx │ ├── adf_checklist.en.xlsx │ ├── adf_checklist.es.xlsx │ ├── adf_checklist.ja.xlsx │ ├── adf_checklist.ko.xlsx │ ├── adf_checklist.pt.xlsx │ ├── adf_checklist.zh-Hant.xlsx │ ├── ado_checklist.en.xlsx │ ├── ado_checklist.es.xlsx │ ├── ado_checklist.ja.xlsx │ ├── ado_checklist.ko.xlsx │ ├── ado_checklist.pt.xlsx │ ├── ado_checklist.zh-Hant.xlsx │ ├── afd_checklist.en.xlsx │ ├── afd_checklist.es.xlsx │ ├── afd_checklist.ja.xlsx │ ├── afd_checklist.ko.xlsx │ ├── afd_checklist.pt.xlsx │ ├── afd_checklist.zh-Hant.xlsx │ ├── ai_lz_checklist.en.xlsx │ ├── ai_lz_checklist.es.xlsx │ ├── ai_lz_checklist.ja.xlsx │ ├── ai_lz_checklist.ko.xlsx │ ├── ai_lz_checklist.pt.xlsx │ ├── ai_lz_checklist.zh-Hant.xlsx │ ├── aks_checklist.en.xlsx │ ├── aks_checklist.es.xlsx │ ├── aks_checklist.ja.xlsx │ ├── aks_checklist.ko.xlsx │ ├── aks_checklist.pt.xlsx │ ├── aks_checklist.zh-Hant.xlsx │ ├── alz_checklist.en.xlsx │ ├── alz_checklist.es.xlsx │ ├── alz_checklist.ja.xlsx │ ├── alz_checklist.ko.xlsx │ ├── alz_checklist.pt.xlsx │ ├── alz_checklist.zh-Hant.xlsx │ ├── aoai_checklist.en.xlsx │ ├── aoai_checklist.es.xlsx │ ├── aoai_checklist.ja.xlsx │ ├── aoai_checklist.ko.xlsx │ ├── aoai_checklist.pt.xlsx │ ├── aoai_checklist.zh-Hant.xlsx │ ├── apim_checklist.en.xlsx │ ├── apim_checklist.es.xlsx │ ├── apim_checklist.ja.xlsx │ ├── apim_checklist.ko.xlsx │ ├── apim_checklist.pt.xlsx │ ├── apim_checklist.zh-Hant.xlsx │ ├── appservicewebapps_sg_checklist.en.xlsx │ ├── appservicewebapps_sg_checklist.es.xlsx │ ├── appservicewebapps_sg_checklist.ja.xlsx │ ├── appservicewebapps_sg_checklist.ko.xlsx │ ├── appservicewebapps_sg_checklist.pt.xlsx │ ├── appservicewebapps_sg_checklist.zh-Hant.xlsx │ ├── appsvc_checklist.en.xlsx │ ├── appsvc_checklist.es.xlsx │ ├── appsvc_checklist.ja.xlsx │ ├── appsvc_checklist.ko.xlsx │ ├── appsvc_checklist.pt.xlsx │ ├── appsvc_checklist.zh-Hant.xlsx │ ├── appsvc_security_checklist.en.xlsx │ ├── appsvc_security_checklist.es.xlsx │ ├── appsvc_security_checklist.ja.xlsx │ ├── appsvc_security_checklist.ko.xlsx │ ├── appsvc_security_checklist.pt.xlsx │ ├── aro_checklist.en.xlsx │ ├── aro_checklist.es.xlsx │ ├── aro_checklist.ja.xlsx │ ├── aro_checklist.ko.xlsx │ ├── aro_checklist.pt.xlsx │ ├── aro_checklist.zh-Hant.xlsx │ ├── asb_security_checklist.en.xlsx │ ├── asb_security_checklist.es.xlsx │ ├── asb_security_checklist.ja.xlsx │ ├── asb_security_checklist.ko.xlsx │ ├── asb_security_checklist.pt.xlsx │ ├── avd_checklist.en.xlsx │ ├── avd_checklist.es.xlsx │ ├── avd_checklist.ja.xlsx │ ├── avd_checklist.ko.xlsx │ ├── avd_checklist.pt.xlsx │ ├── avs_checklist.en.xlsx │ ├── avs_checklist.es.xlsx │ ├── avs_checklist.ja.xlsx │ ├── avs_checklist.ko.xlsx │ ├── avs_checklist.pt.xlsx │ ├── avs_checklist.zh-Hant.xlsx │ ├── avs_implementation_checklist.en.xlsx │ ├── avs_implementation_checklist.es.xlsx │ ├── avs_implementation_checklist.ja.xlsx │ ├── avs_implementation_checklist.ko.xlsx │ ├── avs_implementation_checklist.pt.xlsx │ ├── azfun_checklist.en.xlsx │ ├── azfun_checklist.es.xlsx │ ├── azfun_checklist.ja.xlsx │ ├── azfun_checklist.ko.xlsx │ ├── azfun_checklist.pt.xlsx │ ├── azfun_checklist.zh-Hant.xlsx │ ├── azure_arc_checklist.en.xlsx │ ├── azure_arc_checklist.es.xlsx │ ├── azure_arc_checklist.ja.xlsx │ ├── azure_arc_checklist.ko.xlsx │ ├── azure_arc_checklist.pt.xlsx │ ├── azure_arc_checklist.zh-Hant.xlsx │ ├── azure_storage_checklist.en.xlsx │ ├── azure_storage_checklist.es.xlsx │ ├── azure_storage_checklist.ja.xlsx │ ├── azure_storage_checklist.ko.xlsx │ ├── azure_storage_checklist.pt.xlsx │ ├── azure_storage_checklist.zh-Hant.xlsx │ ├── azureapplicationgateway_sg_checklist.en.xlsx │ ├── azureapplicationgateway_sg_checklist.es.xlsx │ ├── azureapplicationgateway_sg_checklist.ja.xlsx │ ├── azureapplicationgateway_sg_checklist.ko.xlsx │ ├── azureapplicationgateway_sg_checklist.pt.xlsx │ ├── azureapplicationgateway_sg_checklist.zh-Hant.xlsx │ ├── azureblobstorage_sg_checklist.en.xlsx │ ├── azureblobstorage_sg_checklist.es.xlsx │ ├── azureblobstorage_sg_checklist.ja.xlsx │ ├── azureblobstorage_sg_checklist.ko.xlsx │ ├── azureblobstorage_sg_checklist.pt.xlsx │ ├── azureblobstorage_sg_checklist.zh-Hant.xlsx │ ├── azurebotservice_checklist.en.xlsx │ ├── azurebotservice_checklist.es.xlsx │ ├── azurebotservice_checklist.ja.xlsx │ ├── azurebotservice_checklist.ko.xlsx │ ├── azurebotservice_checklist.pt.xlsx │ ├── azurebotservice_checklist.zh-Hant.xlsx │ ├── azureexpressroute_sg_checklist.en.xlsx │ ├── azureexpressroute_sg_checklist.es.xlsx │ ├── azureexpressroute_sg_checklist.ja.xlsx │ ├── azureexpressroute_sg_checklist.ko.xlsx │ ├── azureexpressroute_sg_checklist.pt.xlsx │ ├── azureexpressroute_sg_checklist.zh-Hant.xlsx │ ├── azurefiles_sg_checklist.en.xlsx │ ├── azurefiles_sg_checklist.es.xlsx │ ├── azurefiles_sg_checklist.ja.xlsx │ ├── azurefiles_sg_checklist.ko.xlsx │ ├── azurefiles_sg_checklist.pt.xlsx │ ├── azurefiles_sg_checklist.zh-Hant.xlsx │ ├── azurefirewall_sg_checklist.en.xlsx │ ├── azurefirewall_sg_checklist.es.xlsx │ ├── azurefirewall_sg_checklist.ja.xlsx │ ├── azurefirewall_sg_checklist.ko.xlsx │ ├── azurefirewall_sg_checklist.pt.xlsx │ ├── azurefirewall_sg_checklist.zh-Hant.xlsx │ ├── azurefrontdoor_sg_checklist.en.xlsx │ ├── azurefrontdoor_sg_checklist.es.xlsx │ ├── azurefrontdoor_sg_checklist.ja.xlsx │ ├── azurefrontdoor_sg_checklist.ko.xlsx │ ├── azurefrontdoor_sg_checklist.pt.xlsx │ ├── azurefrontdoor_sg_checklist.zh-Hant.xlsx │ ├── azurekubernetesservice_sg_checklist.en.xlsx │ ├── azurekubernetesservice_sg_checklist.es.xlsx │ ├── azurekubernetesservice_sg_checklist.ja.xlsx │ ├── azurekubernetesservice_sg_checklist.ko.xlsx │ ├── azurekubernetesservice_sg_checklist.pt.xlsx │ ├── azurekubernetesservice_sg_checklist.zh-Hant.xlsx │ ├── azuremachinelearning_sg_checklist.en.xlsx │ ├── azuremachinelearning_sg_checklist.es.xlsx │ ├── azuremachinelearning_sg_checklist.ja.xlsx │ ├── azuremachinelearning_sg_checklist.ko.xlsx │ ├── azuremachinelearning_sg_checklist.pt.xlsx │ ├── azuremachinelearning_sg_checklist.zh-Hant.xlsx │ ├── azureopenai_sg_checklist.en.xlsx │ ├── azureopenai_sg_checklist.es.xlsx │ ├── azureopenai_sg_checklist.ja.xlsx │ ├── azureopenai_sg_checklist.ko.xlsx │ ├── azureopenai_sg_checklist.pt.xlsx │ ├── azureopenai_sg_checklist.zh-Hant.xlsx │ ├── azurespringapps_checklist.en.xlsx │ ├── azurespringapps_checklist.es.xlsx │ ├── azurespringapps_checklist.ja.xlsx │ ├── azurespringapps_checklist.ko.xlsx │ ├── azurespringapps_checklist.pt.xlsx │ ├── azurespringapps_checklist.zh-Hant.xlsx │ ├── blob_storage_checklist.es.xlsx │ ├── blob_storage_checklist.ja.xlsx │ ├── blob_storage_checklist.ko.xlsx │ ├── blob_storage_checklist.pt.xlsx │ ├── blob_storage_checklist.zh-Hant.xlsx │ ├── blob_storage_security_checklist.en.xlsx │ ├── blob_storage_security_checklist.es.xlsx │ ├── blob_storage_security_checklist.ja.xlsx │ ├── blob_storage_security_checklist.ko.xlsx │ ├── blob_storage_security_checklist.pt.xlsx │ ├── blob_storage_security_checklist.zh-Hant.xlsx │ ├── checklist.en.master.xlsx │ ├── cognitivesearch_checklist.en.xlsx │ ├── cognitivesearch_checklist.es.xlsx │ ├── cognitivesearch_checklist.ja.xlsx │ ├── cognitivesearch_checklist.ko.xlsx │ ├── cognitivesearch_checklist.pt.xlsx │ ├── cognitivesearch_checklist.zh-Hant.xlsx │ ├── container_apps_checklist.en.xlsx │ ├── container_apps_checklist.es.xlsx │ ├── container_apps_checklist.ja.xlsx │ ├── container_apps_checklist.ko.xlsx │ ├── container_apps_checklist.pt.xlsx │ ├── container_apps_checklist.zh-Hant.xlsx │ ├── cost_checklist.en.xlsx │ ├── cost_checklist.es.xlsx │ ├── cost_checklist.ja.xlsx │ ├── cost_checklist.ko.xlsx │ ├── cost_checklist.pt.xlsx │ ├── cost_checklist.zh-Hant.xlsx │ ├── databricks_checklist.en.xlsx │ ├── databricks_checklist.es.xlsx │ ├── databricks_checklist.ja.xlsx │ ├── databricks_checklist.ko.xlsx │ ├── databricks_checklist.pt.xlsx │ ├── databricks_checklist.zh-Hant.xlsx │ ├── datasecurity_checklist.en.xlsx │ ├── datasecurity_checklist.es.xlsx │ ├── datasecurity_checklist.ja.xlsx │ ├── datasecurity_checklist.ko.xlsx │ ├── datasecurity_checklist.pt.xlsx │ ├── datasecurity_checklist.zh-Hant.xlsx │ ├── device_provisioning_service_checklist.en.xlsx │ ├── device_provisioning_service_checklist.es.xlsx │ ├── device_provisioning_service_checklist.ja.xlsx │ ├── device_provisioning_service_checklist.ko.xlsx │ ├── device_provisioning_service_checklist.pt.xlsx │ ├── device_provisioning_service_checklist.zh-Hant.xlsx │ ├── eh_checklist.en.xlsx │ ├── eh_checklist.es.xlsx │ ├── eh_checklist.ja.xlsx │ ├── eh_checklist.ko.xlsx │ ├── eh_checklist.pt.xlsx │ ├── eh_checklist.zh-Hant.xlsx │ ├── eh_security_checklist.en.xlsx │ ├── eh_security_checklist.es.xlsx │ ├── eh_security_checklist.ja.xlsx │ ├── eh_security_checklist.ko.xlsx │ ├── eh_security_checklist.pt.xlsx │ ├── eh_security_checklist.zh-Hant.xlsx │ ├── hci_checklist.en.xlsx │ ├── hci_checklist.es.xlsx │ ├── hci_checklist.ja.xlsx │ ├── hci_checklist.ko.xlsx │ ├── hci_checklist.pt.xlsx │ ├── identity_checklist.en.xlsx │ ├── identity_checklist.es.xlsx │ ├── identity_checklist.ja.xlsx │ ├── identity_checklist.ko.xlsx │ ├── identity_checklist.pt.xlsx │ ├── identity_checklist.zh-Hant.xlsx │ ├── iot_hub_checklist.en.xlsx │ ├── iot_hub_checklist.es.xlsx │ ├── iot_hub_checklist.ja.xlsx │ ├── iot_hub_checklist.ko.xlsx │ ├── iot_hub_checklist.pt.xlsx │ ├── iot_hub_checklist.zh-Hant.xlsx │ ├── keyvault_checklist.en.xlsx │ ├── keyvault_checklist.es.xlsx │ ├── keyvault_checklist.ja.xlsx │ ├── keyvault_checklist.ko.xlsx │ ├── keyvault_checklist.pt.xlsx │ ├── keyvault_checklist.zh-Hant.xlsx │ ├── logic_app_checklist.en.xlsx │ ├── logic_app_checklist.es.xlsx │ ├── logic_app_checklist.ja.xlsx │ ├── logic_app_checklist.ko.xlsx │ ├── logic_app_checklist.pt.xlsx │ ├── logic_app_checklist.zh-Hant.xlsx │ ├── multitenancy_checklist.en.xlsx │ ├── multitenancy_checklist.es.xlsx │ ├── multitenancy_checklist.ja.xlsx │ ├── multitenancy_checklist.ko.xlsx │ ├── multitenancy_checklist.pt.xlsx │ ├── multitenancy_checklist.zh-Hant.xlsx │ ├── mysql_checklist.en.xlsx │ ├── mysql_checklist.es.xlsx │ ├── mysql_checklist.ja.xlsx │ ├── mysql_checklist.ko.xlsx │ ├── mysql_checklist.pt.xlsx │ ├── mysql_checklist.zh-Hant.xlsx │ ├── network_appdelivery_checklist.en.xlsx │ ├── network_appdelivery_checklist.es.xlsx │ ├── network_appdelivery_checklist.ja.xlsx │ ├── network_appdelivery_checklist.ko.xlsx │ ├── network_appdelivery_checklist.pt.xlsx │ ├── network_appdelivery_checklist.zh-Hant.xlsx │ ├── redis_checklist.en.xlsx │ ├── redis_checklist.es.xlsx │ ├── redis_checklist.ja.xlsx │ ├── redis_checklist.ko.xlsx │ ├── redis_checklist.pt.xlsx │ ├── redis_checklist.zh-Hant.xlsx │ ├── redis_resiliency_checklist.en.xlsx │ ├── redis_resiliency_checklist.es.xlsx │ ├── redis_resiliency_checklist.ja.xlsx │ ├── redis_resiliency_checklist.ko.xlsx │ ├── redis_resiliency_checklist.pt.xlsx │ ├── redis_resiliency_checklist.zh-Hant.xlsx │ ├── resiliency_checklist.en.xlsx │ ├── resiliency_checklist.es.xlsx │ ├── resiliency_checklist.ja.xlsx │ ├── resiliency_checklist.ko.xlsx │ ├── resiliency_checklist.pt.xlsx │ ├── review_checklist_empty.xlsx │ ├── review_checklist_master_empty.xlsx │ ├── review_checklist_waf_empty.xlsx │ ├── sap_checklist.en.xlsx │ ├── sap_checklist.es.xlsx │ ├── sap_checklist.ja.xlsx │ ├── sap_checklist.ko.xlsx │ ├── sap_checklist.pt.xlsx │ ├── sap_checklist.zh-Hant.xlsx │ ├── security_checklist.en.xlsx │ ├── security_checklist.es.xlsx │ ├── security_checklist.ja.xlsx │ ├── security_checklist.ko.xlsx │ ├── security_checklist.pt.xlsx │ ├── security_checklist.zh-Hant.xlsx │ ├── servicebus_checklist.en.xlsx │ ├── servicebus_checklist.es.xlsx │ ├── servicebus_checklist.ja.xlsx │ ├── servicebus_checklist.ko.xlsx │ ├── servicebus_checklist.pt.xlsx │ ├── servicebus_checklist.zh-Hant.xlsx │ ├── sql_checklist.en.xlsx │ ├── sql_checklist.es.xlsx │ ├── sql_checklist.ja.xlsx │ ├── sql_checklist.ko.xlsx │ ├── sql_checklist.pt.xlsx │ ├── sql_checklist.zh-Hant.xlsx │ ├── sqldb_checklist.en.xlsx │ ├── sqldb_checklist.es.xlsx │ ├── sqldb_checklist.ja.xlsx │ ├── sqldb_checklist.ko.xlsx │ ├── sqldb_checklist.pt.xlsx │ ├── sqldb_checklist.zh-Hant.xlsx │ ├── sqldb_security_checklist.en.xlsx │ ├── sqldb_security_checklist.es.xlsx │ ├── sqldb_security_checklist.ja.xlsx │ ├── sqldb_security_checklist.ko.xlsx │ ├── sqldb_security_checklist.pt.xlsx │ ├── streamanalytics_checklist.en.xlsx │ ├── streamanalytics_checklist.es.xlsx │ ├── streamanalytics_checklist.ja.xlsx │ ├── streamanalytics_checklist.ko.xlsx │ ├── streamanalytics_checklist.pt.xlsx │ ├── streamanalytics_checklist.zh-Hant.xlsx │ ├── theaks_checklist.en.xlsx │ ├── theaks_checklist.es.xlsx │ ├── theaks_checklist.ja.xlsx │ ├── theaks_checklist.ko.xlsx │ ├── theaks_checklist.pt.xlsx │ ├── theaks_checklist.zh-Hant.xlsx │ ├── virtualmachines_sg_checklist.en.xlsx │ ├── virtualmachines_sg_checklist.es.xlsx │ ├── virtualmachines_sg_checklist.ja.xlsx │ ├── virtualmachines_sg_checklist.ko.xlsx │ ├── virtualmachines_sg_checklist.pt.xlsx │ ├── virtualmachines_sg_checklist.zh-Hant.xlsx │ ├── waf.en.xlsx │ ├── waf.es.xlsx │ ├── waf.ja.xlsx │ ├── waf.ko.xlsx │ ├── waf.pt.xlsx │ ├── waf.zh-Hant.xlsx │ ├── waf_checklist..xlsx │ ├── waf_checklist.en.xlsx │ ├── waf_checklist.es.xlsx │ ├── waf_checklist.ja.xlsx │ ├── waf_checklist.ko.xlsx │ ├── waf_checklist.pt.xlsx │ ├── waf_checklist.zh-Hant.xlsx │ ├── wafsg_checklist.en.xlsx │ ├── wafsg_checklist.es.xlsx │ ├── wafsg_checklist.ja.xlsx │ ├── wafsg_checklist.ko.xlsx │ ├── wafsg_checklist.pt.xlsx │ └── wafsg_checklist.zh-Hant.xlsx ├── review_checklist.xlsm └── review_checklists_scripts.xlsx └── workbooks ├── README.md ├── acr_checklist.en_counters_workbook.json ├── acr_checklist.en_counters_workbook_template.json ├── acr_checklist.en_workbook.json ├── acr_checklist.en_workbook_template.json ├── afd_checklist.en_counters_workbook.json ├── afd_checklist.en_counters_workbook_template.json ├── afd_checklist.en_workbook.json ├── afd_checklist.en_workbook_template.json ├── ai_lz_checklist.en_counters_workbook.json ├── ai_lz_checklist.en_counters_workbook_template.json ├── ai_lz_checklist.en_workbook.json ├── ai_lz_checklist.en_workbook_template.json ├── aks_checklist.en_counters_workbook.json ├── aks_checklist.en_counters_workbook_template.json ├── aks_checklist.en_workbook.json ├── aks_checklist.en_workbook_template.json ├── alz_checklist.en_counters_workbook.json ├── alz_checklist.en_counters_workbook_template.json ├── alz_checklist.en_network_counters.json ├── alz_checklist.en_network_counters_template.json ├── alz_checklist.en_network_tabcounters.json ├── alz_checklist.en_network_tabcounters_template.json ├── alz_checklist.en_network_workbook.json ├── alz_checklist.en_network_workbook_template.json ├── alz_checklist.en_workbook.json ├── alz_checklist.en_workbook_template.json ├── appdelivery_checklist.en_network.json ├── appdelivery_checklist.en_network_counters_workbook.json ├── appdelivery_checklist.en_network_counters_workbook_template.json ├── appdelivery_checklist.en_network_counters_workbook_template_template.json ├── appdelivery_checklist.en_network_tabcounters.json ├── appdelivery_checklist.en_network_workbook.json ├── appdelivery_checklist.en_network_workbook_template.json ├── appdelivery_checklist.en_network_workbook_template_template.json ├── appsvc_checklist.en_counters_workbook.json ├── appsvc_checklist.en_counters_workbook_template.json ├── appsvc_checklist.en_workbook.json ├── appsvc_checklist.en_workbook_template.json ├── appsvc_security_checklist.en_counters_workbook.json ├── appsvc_security_checklist.en_counters_workbook_template.json ├── appsvc_security_checklist.en_workbook.json ├── appsvc_security_checklist.en_workbook_template.json ├── azure_arc_checklist.en_counters_workbook.json ├── azure_arc_checklist.en_counters_workbook_template.json ├── azure_arc_checklist.en_workbook.json ├── azure_arc_checklist.en_workbook_template.json ├── azure_storage_checklist.en_counters_workbook.json ├── azure_storage_checklist.en_counters_workbook_template.json ├── azure_storage_checklist.en_workbook.json ├── azure_storage_checklist.en_workbook_template.json ├── blocks ├── block_arm.json ├── block_invisible_parameter.json ├── block_itemgroup.json ├── block_itemgroup_withcounters.json ├── block_link.json ├── block_linkgroup.json ├── block_query.json ├── block_text.json ├── block_workbook.json └── sample_workbook.json ├── keyvault_checklist.en_counters_workbook.json ├── keyvault_checklist.en_counters_workbook_template.json ├── keyvault_checklist.en_workbook.json ├── keyvault_checklist.en_workbook_template.json ├── network_appdelivery_checklist.en_counters_workbook.json ├── network_appdelivery_checklist.en_counters_workbook_template.json ├── network_appdelivery_checklist.en_workbook.json ├── network_appdelivery_checklist.en_workbook_template.json ├── pictures ├── advanced_editor.png └── aks_bcdr.png ├── sap_checklist.en_counters_workbook.json ├── sap_checklist.en_counters_workbook_template.json ├── sap_checklist.en_workbook.json └── sap_checklist.en_workbook_template.json /.github/ISSUE_TEMPLATE/01--content-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/ISSUE_TEMPLATE/01--content-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02--feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/ISSUE_TEMPLATE/02--feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03--bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/ISSUE_TEMPLATE/03--bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04--documentation-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/ISSUE_TEMPLATE/04--documentation-issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/get_aprl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_aprl/Dockerfile -------------------------------------------------------------------------------- /.github/actions/get_aprl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_aprl/README.md -------------------------------------------------------------------------------- /.github/actions/get_aprl/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_aprl/action.yml -------------------------------------------------------------------------------- /.github/actions/get_aprl/entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_aprl/entrypoint.py -------------------------------------------------------------------------------- /.github/actions/get_aprl/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pyyaml 3 | -------------------------------------------------------------------------------- /.github/actions/get_service_guides/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_service_guides/Dockerfile -------------------------------------------------------------------------------- /.github/actions/get_service_guides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_service_guides/README.md -------------------------------------------------------------------------------- /.github/actions/get_service_guides/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_service_guides/action.yml -------------------------------------------------------------------------------- /.github/actions/get_service_guides/entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_service_guides/entrypoint.py -------------------------------------------------------------------------------- /.github/actions/get_service_guides/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /.github/actions/get_the_aks_checklist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_the_aks_checklist/Dockerfile -------------------------------------------------------------------------------- /.github/actions/get_the_aks_checklist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_the_aks_checklist/README.md -------------------------------------------------------------------------------- /.github/actions/get_the_aks_checklist/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_the_aks_checklist/action.yml -------------------------------------------------------------------------------- /.github/actions/get_the_aks_checklist/entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/get_the_aks_checklist/entrypoint.py -------------------------------------------------------------------------------- /.github/actions/get_the_aks_checklist/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /.github/actions/review-checklists-lint/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/review-checklists-lint/Dockerfile -------------------------------------------------------------------------------- /.github/actions/review-checklists-lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/review-checklists-lint/README.md -------------------------------------------------------------------------------- /.github/actions/review-checklists-lint/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/review-checklists-lint/action.yml -------------------------------------------------------------------------------- /.github/actions/review-checklists-lint/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/actions/review-checklists-lint/entrypoint.sh -------------------------------------------------------------------------------- /.github/workflows/get_aprl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/workflows/get_aprl.yml -------------------------------------------------------------------------------- /.github/workflows/get_theakschecklist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/workflows/get_theakschecklist.yml -------------------------------------------------------------------------------- /.github/workflows/get_waf_sg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/workflows/get_waf_sg.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/transform.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/workflows/transform.ps1 -------------------------------------------------------------------------------- /.github/workflows/translate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.github/workflows/translate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /checklists-ext/appservicewebapps_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/appservicewebapps_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/appservicewebapps_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/appservicewebapps_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/appservicewebapps_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/appservicewebapps_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/appservicewebapps_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/appservicewebapps_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/appservicewebapps_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/appservicewebapps_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/appservicewebapps_sg_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/appservicewebapps_sg_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists-ext/aprl_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/aprl_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/azureapplicationgateway_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureapplicationgateway_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/azureapplicationgateway_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureapplicationgateway_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/azureapplicationgateway_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureapplicationgateway_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/azureapplicationgateway_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureapplicationgateway_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/azureapplicationgateway_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureapplicationgateway_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/azureblobstorage_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureblobstorage_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/azureblobstorage_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureblobstorage_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/azureblobstorage_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureblobstorage_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/azureblobstorage_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureblobstorage_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/azureblobstorage_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureblobstorage_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/azureblobstorage_sg_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureblobstorage_sg_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists-ext/azureexpressroute_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureexpressroute_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/azureexpressroute_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureexpressroute_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/azureexpressroute_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureexpressroute_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/azureexpressroute_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureexpressroute_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/azureexpressroute_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureexpressroute_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/azureexpressroute_sg_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureexpressroute_sg_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists-ext/azurefiles_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefiles_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/azurefiles_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefiles_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/azurefiles_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefiles_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/azurefiles_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefiles_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/azurefiles_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefiles_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/azurefiles_sg_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefiles_sg_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists-ext/azurefirewall_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefirewall_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/azurefirewall_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefirewall_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/azurefirewall_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefirewall_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/azurefirewall_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefirewall_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/azurefirewall_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefirewall_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/azurefirewall_sg_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefirewall_sg_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists-ext/azurefrontdoor_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefrontdoor_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/azurefrontdoor_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefrontdoor_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/azurefrontdoor_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefrontdoor_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/azurefrontdoor_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefrontdoor_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/azurefrontdoor_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefrontdoor_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/azurefrontdoor_sg_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurefrontdoor_sg_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists-ext/azurekubernetesservice_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurekubernetesservice_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/azurekubernetesservice_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurekubernetesservice_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/azurekubernetesservice_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurekubernetesservice_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/azurekubernetesservice_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurekubernetesservice_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/azurekubernetesservice_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azurekubernetesservice_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/azuremachinelearning_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azuremachinelearning_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/azuremachinelearning_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azuremachinelearning_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/azuremachinelearning_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azuremachinelearning_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/azuremachinelearning_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azuremachinelearning_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/azuremachinelearning_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azuremachinelearning_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/azureopenai_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureopenai_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/azureopenai_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureopenai_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/azureopenai_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureopenai_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/azureopenai_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureopenai_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/azureopenai_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureopenai_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/azureopenai_sg_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/azureopenai_sg_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists-ext/fullwaf_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/fullwaf_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/theaks_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/theaks_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/theaks_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/theaks_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/theaks_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/theaks_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/theaks_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/theaks_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/theaks_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/theaks_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/theaks_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/theaks_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists-ext/virtualmachines_sg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/virtualmachines_sg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/virtualmachines_sg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/virtualmachines_sg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/virtualmachines_sg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/virtualmachines_sg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/virtualmachines_sg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/virtualmachines_sg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/virtualmachines_sg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/virtualmachines_sg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/virtualmachines_sg_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/virtualmachines_sg_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists-ext/wafsg_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/wafsg_checklist.en.json -------------------------------------------------------------------------------- /checklists-ext/wafsg_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/wafsg_checklist.es.json -------------------------------------------------------------------------------- /checklists-ext/wafsg_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/wafsg_checklist.ja.json -------------------------------------------------------------------------------- /checklists-ext/wafsg_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/wafsg_checklist.ko.json -------------------------------------------------------------------------------- /checklists-ext/wafsg_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/wafsg_checklist.pt.json -------------------------------------------------------------------------------- /checklists-ext/wafsg_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists-ext/wafsg_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/README.md -------------------------------------------------------------------------------- /checklists/acr_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/acr_checklist.en.json -------------------------------------------------------------------------------- /checklists/acr_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/acr_checklist.es.json -------------------------------------------------------------------------------- /checklists/acr_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/acr_checklist.ja.json -------------------------------------------------------------------------------- /checklists/acr_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/acr_checklist.ko.json -------------------------------------------------------------------------------- /checklists/acr_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/acr_checklist.pt.json -------------------------------------------------------------------------------- /checklists/acr_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/acr_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/adf_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/adf_checklist.en.json -------------------------------------------------------------------------------- /checklists/adf_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/adf_checklist.es.json -------------------------------------------------------------------------------- /checklists/adf_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/adf_checklist.ja.json -------------------------------------------------------------------------------- /checklists/adf_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/adf_checklist.ko.json -------------------------------------------------------------------------------- /checklists/adf_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/adf_checklist.pt.json -------------------------------------------------------------------------------- /checklists/adf_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/adf_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/ado_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ado_checklist.en.json -------------------------------------------------------------------------------- /checklists/ado_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ado_checklist.es.json -------------------------------------------------------------------------------- /checklists/ado_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ado_checklist.ja.json -------------------------------------------------------------------------------- /checklists/ado_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ado_checklist.ko.json -------------------------------------------------------------------------------- /checklists/ado_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ado_checklist.pt.json -------------------------------------------------------------------------------- /checklists/ado_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ado_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/adx_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/adx_checklist.en.json -------------------------------------------------------------------------------- /checklists/afd_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/afd_checklist.en.json -------------------------------------------------------------------------------- /checklists/afd_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/afd_checklist.es.json -------------------------------------------------------------------------------- /checklists/afd_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/afd_checklist.ja.json -------------------------------------------------------------------------------- /checklists/afd_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/afd_checklist.ko.json -------------------------------------------------------------------------------- /checklists/afd_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/afd_checklist.pt.json -------------------------------------------------------------------------------- /checklists/afd_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/afd_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/ai_lz_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ai_lz_checklist.en.json -------------------------------------------------------------------------------- /checklists/ai_lz_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ai_lz_checklist.es.json -------------------------------------------------------------------------------- /checklists/ai_lz_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ai_lz_checklist.ja.json -------------------------------------------------------------------------------- /checklists/ai_lz_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ai_lz_checklist.ko.json -------------------------------------------------------------------------------- /checklists/ai_lz_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ai_lz_checklist.pt.json -------------------------------------------------------------------------------- /checklists/ai_lz_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/ai_lz_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/aks_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aks_checklist.en.json -------------------------------------------------------------------------------- /checklists/aks_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aks_checklist.es.json -------------------------------------------------------------------------------- /checklists/aks_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aks_checklist.ja.json -------------------------------------------------------------------------------- /checklists/aks_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aks_checklist.ko.json -------------------------------------------------------------------------------- /checklists/aks_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aks_checklist.pt.json -------------------------------------------------------------------------------- /checklists/aks_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aks_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/alz_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/alz_checklist.en.json -------------------------------------------------------------------------------- /checklists/alz_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/alz_checklist.es.json -------------------------------------------------------------------------------- /checklists/alz_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/alz_checklist.ja.json -------------------------------------------------------------------------------- /checklists/alz_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/alz_checklist.ko.json -------------------------------------------------------------------------------- /checklists/alz_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/alz_checklist.pt.json -------------------------------------------------------------------------------- /checklists/alz_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/alz_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/apim_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/apim_checklist.en.json -------------------------------------------------------------------------------- /checklists/apim_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/apim_checklist.es.json -------------------------------------------------------------------------------- /checklists/apim_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/apim_checklist.ja.json -------------------------------------------------------------------------------- /checklists/apim_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/apim_checklist.ko.json -------------------------------------------------------------------------------- /checklists/apim_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/apim_checklist.pt.json -------------------------------------------------------------------------------- /checklists/apim_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/apim_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/appsvc_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/appsvc_checklist.en.json -------------------------------------------------------------------------------- /checklists/appsvc_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/appsvc_checklist.es.json -------------------------------------------------------------------------------- /checklists/appsvc_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/appsvc_checklist.ja.json -------------------------------------------------------------------------------- /checklists/appsvc_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/appsvc_checklist.ko.json -------------------------------------------------------------------------------- /checklists/appsvc_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/appsvc_checklist.pt.json -------------------------------------------------------------------------------- /checklists/appsvc_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/appsvc_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/aro_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aro_checklist.en.json -------------------------------------------------------------------------------- /checklists/aro_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aro_checklist.es.json -------------------------------------------------------------------------------- /checklists/aro_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aro_checklist.ja.json -------------------------------------------------------------------------------- /checklists/aro_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aro_checklist.ko.json -------------------------------------------------------------------------------- /checklists/aro_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aro_checklist.pt.json -------------------------------------------------------------------------------- /checklists/aro_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/aro_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/avd_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avd_checklist.en.json -------------------------------------------------------------------------------- /checklists/avd_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avd_checklist.es.json -------------------------------------------------------------------------------- /checklists/avd_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avd_checklist.ja.json -------------------------------------------------------------------------------- /checklists/avd_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avd_checklist.ko.json -------------------------------------------------------------------------------- /checklists/avd_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avd_checklist.pt.json -------------------------------------------------------------------------------- /checklists/avs_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_checklist.en.json -------------------------------------------------------------------------------- /checklists/avs_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_checklist.es.json -------------------------------------------------------------------------------- /checklists/avs_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_checklist.ja.json -------------------------------------------------------------------------------- /checklists/avs_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_checklist.ko.json -------------------------------------------------------------------------------- /checklists/avs_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_checklist.pt.json -------------------------------------------------------------------------------- /checklists/avs_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/avs_implementation_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_implementation_checklist.en.json -------------------------------------------------------------------------------- /checklists/avs_implementation_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_implementation_checklist.es.json -------------------------------------------------------------------------------- /checklists/avs_implementation_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_implementation_checklist.ja.json -------------------------------------------------------------------------------- /checklists/avs_implementation_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_implementation_checklist.ko.json -------------------------------------------------------------------------------- /checklists/avs_implementation_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/avs_implementation_checklist.pt.json -------------------------------------------------------------------------------- /checklists/azfun_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azfun_checklist.en.json -------------------------------------------------------------------------------- /checklists/azfun_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azfun_checklist.es.json -------------------------------------------------------------------------------- /checklists/azfun_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azfun_checklist.ja.json -------------------------------------------------------------------------------- /checklists/azfun_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azfun_checklist.ko.json -------------------------------------------------------------------------------- /checklists/azfun_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azfun_checklist.pt.json -------------------------------------------------------------------------------- /checklists/azfun_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azfun_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/azure_arc_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_arc_checklist.en.json -------------------------------------------------------------------------------- /checklists/azure_arc_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_arc_checklist.es.json -------------------------------------------------------------------------------- /checklists/azure_arc_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_arc_checklist.ja.json -------------------------------------------------------------------------------- /checklists/azure_arc_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_arc_checklist.ko.json -------------------------------------------------------------------------------- /checklists/azure_arc_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_arc_checklist.pt.json -------------------------------------------------------------------------------- /checklists/azure_arc_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_arc_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/azure_storage_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_storage_checklist.en.json -------------------------------------------------------------------------------- /checklists/azure_storage_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_storage_checklist.es.json -------------------------------------------------------------------------------- /checklists/azure_storage_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_storage_checklist.ja.json -------------------------------------------------------------------------------- /checklists/azure_storage_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_storage_checklist.ko.json -------------------------------------------------------------------------------- /checklists/azure_storage_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_storage_checklist.pt.json -------------------------------------------------------------------------------- /checklists/azure_storage_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azure_storage_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/azurebotservice_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurebotservice_checklist.en.json -------------------------------------------------------------------------------- /checklists/azurebotservice_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurebotservice_checklist.es.json -------------------------------------------------------------------------------- /checklists/azurebotservice_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurebotservice_checklist.ja.json -------------------------------------------------------------------------------- /checklists/azurebotservice_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurebotservice_checklist.ko.json -------------------------------------------------------------------------------- /checklists/azurebotservice_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurebotservice_checklist.pt.json -------------------------------------------------------------------------------- /checklists/azurebotservice_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurebotservice_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/azurespringapps_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurespringapps_checklist.en.json -------------------------------------------------------------------------------- /checklists/azurespringapps_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurespringapps_checklist.es.json -------------------------------------------------------------------------------- /checklists/azurespringapps_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurespringapps_checklist.ja.json -------------------------------------------------------------------------------- /checklists/azurespringapps_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurespringapps_checklist.ko.json -------------------------------------------------------------------------------- /checklists/azurespringapps_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurespringapps_checklist.pt.json -------------------------------------------------------------------------------- /checklists/azurespringapps_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/azurespringapps_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/blob_storage_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/blob_storage_checklist.es.json -------------------------------------------------------------------------------- /checklists/blob_storage_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/blob_storage_checklist.ja.json -------------------------------------------------------------------------------- /checklists/blob_storage_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/blob_storage_checklist.ko.json -------------------------------------------------------------------------------- /checklists/blob_storage_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/blob_storage_checklist.pt.json -------------------------------------------------------------------------------- /checklists/blob_storage_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/blob_storage_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/checklist.en.master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/checklist.en.master.json -------------------------------------------------------------------------------- /checklists/checklist.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/checklist.schema.json -------------------------------------------------------------------------------- /checklists/container_apps_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/container_apps_checklist.en.json -------------------------------------------------------------------------------- /checklists/container_apps_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/container_apps_checklist.es.json -------------------------------------------------------------------------------- /checklists/container_apps_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/container_apps_checklist.ja.json -------------------------------------------------------------------------------- /checklists/container_apps_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/container_apps_checklist.ko.json -------------------------------------------------------------------------------- /checklists/container_apps_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/container_apps_checklist.pt.json -------------------------------------------------------------------------------- /checklists/container_apps_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/container_apps_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/cosmosdb_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/cosmosdb_checklist.en.json -------------------------------------------------------------------------------- /checklists/cost_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/cost_checklist.en.json -------------------------------------------------------------------------------- /checklists/cost_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/cost_checklist.es.json -------------------------------------------------------------------------------- /checklists/cost_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/cost_checklist.ja.json -------------------------------------------------------------------------------- /checklists/cost_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/cost_checklist.ko.json -------------------------------------------------------------------------------- /checklists/cost_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/cost_checklist.pt.json -------------------------------------------------------------------------------- /checklists/cost_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/cost_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/databricks_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/databricks_checklist.en.json -------------------------------------------------------------------------------- /checklists/databricks_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/databricks_checklist.es.json -------------------------------------------------------------------------------- /checklists/databricks_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/databricks_checklist.ja.json -------------------------------------------------------------------------------- /checklists/databricks_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/databricks_checklist.ko.json -------------------------------------------------------------------------------- /checklists/databricks_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/databricks_checklist.pt.json -------------------------------------------------------------------------------- /checklists/databricks_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/databricks_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/datasecurity_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/datasecurity_checklist.en.json -------------------------------------------------------------------------------- /checklists/datasecurity_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/datasecurity_checklist.es.json -------------------------------------------------------------------------------- /checklists/datasecurity_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/datasecurity_checklist.ja.json -------------------------------------------------------------------------------- /checklists/datasecurity_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/datasecurity_checklist.ko.json -------------------------------------------------------------------------------- /checklists/datasecurity_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/datasecurity_checklist.pt.json -------------------------------------------------------------------------------- /checklists/datasecurity_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/datasecurity_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/device_provisioning_service_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/device_provisioning_service_checklist.en.json -------------------------------------------------------------------------------- /checklists/device_provisioning_service_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/device_provisioning_service_checklist.es.json -------------------------------------------------------------------------------- /checklists/device_provisioning_service_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/device_provisioning_service_checklist.ja.json -------------------------------------------------------------------------------- /checklists/device_provisioning_service_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/device_provisioning_service_checklist.ko.json -------------------------------------------------------------------------------- /checklists/device_provisioning_service_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/device_provisioning_service_checklist.pt.json -------------------------------------------------------------------------------- /checklists/device_update_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/device_update_checklist.en.json -------------------------------------------------------------------------------- /checklists/dns_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/dns_checklist.en.json -------------------------------------------------------------------------------- /checklists/eh_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/eh_checklist.en.json -------------------------------------------------------------------------------- /checklists/eh_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/eh_checklist.es.json -------------------------------------------------------------------------------- /checklists/eh_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/eh_checklist.ja.json -------------------------------------------------------------------------------- /checklists/eh_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/eh_checklist.ko.json -------------------------------------------------------------------------------- /checklists/eh_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/eh_checklist.pt.json -------------------------------------------------------------------------------- /checklists/eh_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/eh_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/hci_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/hci_checklist.en.json -------------------------------------------------------------------------------- /checklists/hci_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/hci_checklist.es.json -------------------------------------------------------------------------------- /checklists/hci_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/hci_checklist.ja.json -------------------------------------------------------------------------------- /checklists/hci_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/hci_checklist.ko.json -------------------------------------------------------------------------------- /checklists/hci_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/hci_checklist.pt.json -------------------------------------------------------------------------------- /checklists/identity_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/identity_checklist.en.json -------------------------------------------------------------------------------- /checklists/identity_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/identity_checklist.es.json -------------------------------------------------------------------------------- /checklists/identity_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/identity_checklist.ja.json -------------------------------------------------------------------------------- /checklists/identity_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/identity_checklist.ko.json -------------------------------------------------------------------------------- /checklists/identity_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/identity_checklist.pt.json -------------------------------------------------------------------------------- /checklists/identity_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/identity_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/iot_hub_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/iot_hub_checklist.en.json -------------------------------------------------------------------------------- /checklists/iot_hub_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/iot_hub_checklist.es.json -------------------------------------------------------------------------------- /checklists/iot_hub_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/iot_hub_checklist.ja.json -------------------------------------------------------------------------------- /checklists/iot_hub_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/iot_hub_checklist.ko.json -------------------------------------------------------------------------------- /checklists/iot_hub_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/iot_hub_checklist.pt.json -------------------------------------------------------------------------------- /checklists/iot_hub_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/iot_hub_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/keyvault_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/keyvault_checklist.en.json -------------------------------------------------------------------------------- /checklists/keyvault_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/keyvault_checklist.es.json -------------------------------------------------------------------------------- /checklists/keyvault_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/keyvault_checklist.ja.json -------------------------------------------------------------------------------- /checklists/keyvault_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/keyvault_checklist.ko.json -------------------------------------------------------------------------------- /checklists/keyvault_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/keyvault_checklist.pt.json -------------------------------------------------------------------------------- /checklists/keyvault_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/keyvault_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/logic_app_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/logic_app_checklist.en.json -------------------------------------------------------------------------------- /checklists/logic_app_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/logic_app_checklist.es.json -------------------------------------------------------------------------------- /checklists/logic_app_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/logic_app_checklist.ja.json -------------------------------------------------------------------------------- /checklists/logic_app_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/logic_app_checklist.ko.json -------------------------------------------------------------------------------- /checklists/logic_app_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/logic_app_checklist.pt.json -------------------------------------------------------------------------------- /checklists/logic_app_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/logic_app_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/multitenancy_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/multitenancy_checklist.en.json -------------------------------------------------------------------------------- /checklists/multitenancy_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/multitenancy_checklist.es.json -------------------------------------------------------------------------------- /checklists/multitenancy_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/multitenancy_checklist.ja.json -------------------------------------------------------------------------------- /checklists/multitenancy_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/multitenancy_checklist.ko.json -------------------------------------------------------------------------------- /checklists/multitenancy_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/multitenancy_checklist.pt.json -------------------------------------------------------------------------------- /checklists/multitenancy_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/multitenancy_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/mysql_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/mysql_checklist.en.json -------------------------------------------------------------------------------- /checklists/mysql_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/mysql_checklist.es.json -------------------------------------------------------------------------------- /checklists/mysql_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/mysql_checklist.ja.json -------------------------------------------------------------------------------- /checklists/mysql_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/mysql_checklist.ko.json -------------------------------------------------------------------------------- /checklists/mysql_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/mysql_checklist.pt.json -------------------------------------------------------------------------------- /checklists/mysql_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/mysql_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/network_appdelivery_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/network_appdelivery_checklist.en.json -------------------------------------------------------------------------------- /checklists/network_appdelivery_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/network_appdelivery_checklist.es.json -------------------------------------------------------------------------------- /checklists/network_appdelivery_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/network_appdelivery_checklist.ja.json -------------------------------------------------------------------------------- /checklists/network_appdelivery_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/network_appdelivery_checklist.ko.json -------------------------------------------------------------------------------- /checklists/network_appdelivery_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/network_appdelivery_checklist.pt.json -------------------------------------------------------------------------------- /checklists/network_appdelivery_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/network_appdelivery_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/postgreSQL_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/postgreSQL_checklist.en.json -------------------------------------------------------------------------------- /checklists/purview_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/purview_checklist.en.json -------------------------------------------------------------------------------- /checklists/recoveryservicesvault_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/recoveryservicesvault_checklist.en.json -------------------------------------------------------------------------------- /checklists/redis_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/redis_checklist.en.json -------------------------------------------------------------------------------- /checklists/redis_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/redis_checklist.es.json -------------------------------------------------------------------------------- /checklists/redis_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/redis_checklist.ja.json -------------------------------------------------------------------------------- /checklists/redis_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/redis_checklist.ko.json -------------------------------------------------------------------------------- /checklists/redis_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/redis_checklist.pt.json -------------------------------------------------------------------------------- /checklists/redis_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/redis_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/resiliency_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/resiliency_checklist.en.json -------------------------------------------------------------------------------- /checklists/resiliency_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/resiliency_checklist.es.json -------------------------------------------------------------------------------- /checklists/resiliency_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/resiliency_checklist.ja.json -------------------------------------------------------------------------------- /checklists/resiliency_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/resiliency_checklist.ko.json -------------------------------------------------------------------------------- /checklists/resiliency_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/resiliency_checklist.pt.json -------------------------------------------------------------------------------- /checklists/sap_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sap_checklist.en.json -------------------------------------------------------------------------------- /checklists/sap_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sap_checklist.es.json -------------------------------------------------------------------------------- /checklists/sap_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sap_checklist.ja.json -------------------------------------------------------------------------------- /checklists/sap_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sap_checklist.ko.json -------------------------------------------------------------------------------- /checklists/sap_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sap_checklist.pt.json -------------------------------------------------------------------------------- /checklists/sap_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sap_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/security_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/security_checklist.en.json -------------------------------------------------------------------------------- /checklists/security_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/security_checklist.es.json -------------------------------------------------------------------------------- /checklists/security_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/security_checklist.ja.json -------------------------------------------------------------------------------- /checklists/security_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/security_checklist.ko.json -------------------------------------------------------------------------------- /checklists/security_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/security_checklist.pt.json -------------------------------------------------------------------------------- /checklists/security_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/security_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/servicebus_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/servicebus_checklist.en.json -------------------------------------------------------------------------------- /checklists/servicebus_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/servicebus_checklist.es.json -------------------------------------------------------------------------------- /checklists/servicebus_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/servicebus_checklist.ja.json -------------------------------------------------------------------------------- /checklists/servicebus_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/servicebus_checklist.ko.json -------------------------------------------------------------------------------- /checklists/servicebus_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/servicebus_checklist.pt.json -------------------------------------------------------------------------------- /checklists/servicebus_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/servicebus_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/servicefabric_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/servicefabric_checklist.en.json -------------------------------------------------------------------------------- /checklists/sql_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sql_checklist.en.json -------------------------------------------------------------------------------- /checklists/sql_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sql_checklist.es.json -------------------------------------------------------------------------------- /checklists/sql_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sql_checklist.ja.json -------------------------------------------------------------------------------- /checklists/sql_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sql_checklist.ko.json -------------------------------------------------------------------------------- /checklists/sql_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sql_checklist.pt.json -------------------------------------------------------------------------------- /checklists/sql_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sql_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/sqldb_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sqldb_checklist.en.json -------------------------------------------------------------------------------- /checklists/sqldb_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sqldb_checklist.es.json -------------------------------------------------------------------------------- /checklists/sqldb_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sqldb_checklist.ja.json -------------------------------------------------------------------------------- /checklists/sqldb_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sqldb_checklist.ko.json -------------------------------------------------------------------------------- /checklists/sqldb_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sqldb_checklist.pt.json -------------------------------------------------------------------------------- /checklists/sqldb_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/sqldb_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/streamanalytics_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/streamanalytics_checklist.en.json -------------------------------------------------------------------------------- /checklists/streamanalytics_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/streamanalytics_checklist.es.json -------------------------------------------------------------------------------- /checklists/streamanalytics_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/streamanalytics_checklist.ja.json -------------------------------------------------------------------------------- /checklists/streamanalytics_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/streamanalytics_checklist.ko.json -------------------------------------------------------------------------------- /checklists/streamanalytics_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/streamanalytics_checklist.pt.json -------------------------------------------------------------------------------- /checklists/streamanalytics_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/streamanalytics_checklist.zh-Hant.json -------------------------------------------------------------------------------- /checklists/synapse_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/synapse_checklist.en.json -------------------------------------------------------------------------------- /checklists/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/template.json -------------------------------------------------------------------------------- /checklists/waf_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/waf_checklist.en.json -------------------------------------------------------------------------------- /checklists/waf_checklist.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/waf_checklist.es.json -------------------------------------------------------------------------------- /checklists/waf_checklist.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/waf_checklist.ja.json -------------------------------------------------------------------------------- /checklists/waf_checklist.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/waf_checklist.ko.json -------------------------------------------------------------------------------- /checklists/waf_checklist.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/waf_checklist.pt.json -------------------------------------------------------------------------------- /checklists/waf_checklist.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/checklists/waf_checklist.zh-Hant.json -------------------------------------------------------------------------------- /pictures/advanced_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/advanced_buttons.png -------------------------------------------------------------------------------- /pictures/defender_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/defender_settings.png -------------------------------------------------------------------------------- /pictures/defender_settings_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/defender_settings_1.png -------------------------------------------------------------------------------- /pictures/defender_settings_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/defender_settings_2.png -------------------------------------------------------------------------------- /pictures/defender_settings_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/defender_settings_3.png -------------------------------------------------------------------------------- /pictures/defender_settings_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/defender_settings_4.png -------------------------------------------------------------------------------- /pictures/flaskmysql_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/flaskmysql_screenshot.png -------------------------------------------------------------------------------- /pictures/graph_import_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/graph_import_result.png -------------------------------------------------------------------------------- /pictures/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/header.png -------------------------------------------------------------------------------- /pictures/high_level_web_based_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/high_level_web_based_view.png -------------------------------------------------------------------------------- /pictures/macro_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/macro_warning.png -------------------------------------------------------------------------------- /pictures/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/overview.png -------------------------------------------------------------------------------- /pictures/spreadsheet_paste_query_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/spreadsheet_paste_query_result.png -------------------------------------------------------------------------------- /pictures/spreadsheet_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/spreadsheet_screenshot.png -------------------------------------------------------------------------------- /pictures/spreadsheet_screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/spreadsheet_screenshot2.png -------------------------------------------------------------------------------- /pictures/spreadsheet_screenshot_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/spreadsheet_screenshot_dashboard.png -------------------------------------------------------------------------------- /pictures/unblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/pictures/unblock.png -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/aks_graph_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/aks_graph_results.json -------------------------------------------------------------------------------- /scripts/checklist_arg2policy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/checklist_arg2policy.sh -------------------------------------------------------------------------------- /scripts/checklist_graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/checklist_graph.sh -------------------------------------------------------------------------------- /scripts/checklist_graph_update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/checklist_graph_update.ps1 -------------------------------------------------------------------------------- /scripts/checklist_graph_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/checklist_graph_update.py -------------------------------------------------------------------------------- /scripts/compile_checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/compile_checklist.py -------------------------------------------------------------------------------- /scripts/create_master_checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/create_master_checklist.py -------------------------------------------------------------------------------- /scripts/find_duplicate_guids.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/find_duplicate_guids.ps1 -------------------------------------------------------------------------------- /scripts/merge_waf_checklists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/merge_waf_checklists.py -------------------------------------------------------------------------------- /scripts/process_checklist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/process_checklist.sh -------------------------------------------------------------------------------- /scripts/service_dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/service_dictionary.json -------------------------------------------------------------------------------- /scripts/sort_checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/sort_checklist.py -------------------------------------------------------------------------------- /scripts/timestamp_checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/timestamp_checklist.py -------------------------------------------------------------------------------- /scripts/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/translate.py -------------------------------------------------------------------------------- /scripts/update_excel_openpyxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/update_excel_openpyxl.py -------------------------------------------------------------------------------- /scripts/upload2cosmosdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/upload2cosmosdb.py -------------------------------------------------------------------------------- /scripts/upload2tablestorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/upload2tablestorage.py -------------------------------------------------------------------------------- /scripts/verify_checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/verify_checklist.py -------------------------------------------------------------------------------- /scripts/waf_recos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/waf_recos.json -------------------------------------------------------------------------------- /scripts/workbook_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/scripts/workbook_create.py -------------------------------------------------------------------------------- /spreadsheet/JsonConverter.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/JsonConverter.bas -------------------------------------------------------------------------------- /spreadsheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/README.md -------------------------------------------------------------------------------- /spreadsheet/Sheet1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/Sheet1.vb -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_security_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_security_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_security_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_security_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_security_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_security_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_security_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_security_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/acr_security_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/acr_security_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/adf_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/adf_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/adf_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/adf_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/adf_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/adf_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/adf_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/adf_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/adf_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/adf_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/adf_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/adf_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ado_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ado_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ado_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ado_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ado_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ado_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ado_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ado_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ado_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ado_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ado_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ado_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/afd_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/afd_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/afd_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/afd_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/afd_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/afd_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/afd_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/afd_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/afd_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/afd_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/afd_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/afd_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ai_lz_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ai_lz_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ai_lz_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ai_lz_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ai_lz_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ai_lz_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ai_lz_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ai_lz_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ai_lz_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ai_lz_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/ai_lz_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/ai_lz_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aks_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aks_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aks_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aks_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aks_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aks_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aks_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aks_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aks_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aks_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aks_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aks_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/alz_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/alz_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/alz_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/alz_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/alz_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/alz_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/alz_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/alz_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/alz_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/alz_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/alz_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/alz_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aoai_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aoai_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aoai_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aoai_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aoai_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aoai_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aoai_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aoai_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aoai_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aoai_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aoai_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aoai_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/apim_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/apim_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/apim_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/apim_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/apim_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/apim_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/apim_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/apim_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/apim_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/apim_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/apim_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/apim_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_security_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_security_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_security_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_security_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_security_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_security_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_security_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_security_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/appsvc_security_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/appsvc_security_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aro_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aro_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aro_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aro_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aro_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aro_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aro_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aro_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aro_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aro_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/aro_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/aro_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/asb_security_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/asb_security_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/asb_security_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/asb_security_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/asb_security_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/asb_security_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/asb_security_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/asb_security_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/asb_security_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/asb_security_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avd_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avd_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avd_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avd_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avd_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avd_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avd_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avd_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avd_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avd_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_implementation_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_implementation_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_implementation_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_implementation_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_implementation_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_implementation_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_implementation_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_implementation_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/avs_implementation_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/avs_implementation_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azfun_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azfun_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azfun_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azfun_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azfun_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azfun_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azfun_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azfun_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azfun_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azfun_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azfun_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azfun_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_arc_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_arc_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_arc_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_arc_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_arc_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_arc_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_arc_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_arc_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_arc_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_arc_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_arc_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_arc_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_storage_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_storage_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_storage_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_storage_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_storage_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_storage_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_storage_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_storage_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_storage_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_storage_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azure_storage_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azure_storage_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurebotservice_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurebotservice_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurebotservice_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurebotservice_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurebotservice_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurebotservice_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurebotservice_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurebotservice_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurebotservice_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurebotservice_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefiles_sg_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefiles_sg_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefiles_sg_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefiles_sg_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefiles_sg_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefiles_sg_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefiles_sg_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefiles_sg_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefiles_sg_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefiles_sg_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefirewall_sg_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefirewall_sg_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefirewall_sg_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefirewall_sg_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefirewall_sg_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefirewall_sg_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefirewall_sg_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefirewall_sg_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefirewall_sg_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefirewall_sg_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefrontdoor_sg_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefrontdoor_sg_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefrontdoor_sg_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefrontdoor_sg_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefrontdoor_sg_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefrontdoor_sg_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefrontdoor_sg_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefrontdoor_sg_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurefrontdoor_sg_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurefrontdoor_sg_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azureopenai_sg_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azureopenai_sg_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azureopenai_sg_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azureopenai_sg_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azureopenai_sg_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azureopenai_sg_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azureopenai_sg_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azureopenai_sg_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azureopenai_sg_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azureopenai_sg_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurespringapps_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurespringapps_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurespringapps_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurespringapps_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurespringapps_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurespringapps_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurespringapps_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurespringapps_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/azurespringapps_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/azurespringapps_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/blob_storage_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/blob_storage_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/blob_storage_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/blob_storage_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/blob_storage_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/blob_storage_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/blob_storage_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/blob_storage_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/blob_storage_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/blob_storage_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/checklist.en.master.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/checklist.en.master.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cognitivesearch_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cognitivesearch_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cognitivesearch_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cognitivesearch_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cognitivesearch_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cognitivesearch_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cognitivesearch_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cognitivesearch_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cognitivesearch_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cognitivesearch_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/container_apps_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/container_apps_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/container_apps_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/container_apps_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/container_apps_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/container_apps_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/container_apps_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/container_apps_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/container_apps_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/container_apps_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cost_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cost_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cost_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cost_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cost_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cost_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cost_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cost_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cost_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cost_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/cost_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/cost_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/databricks_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/databricks_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/databricks_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/databricks_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/databricks_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/databricks_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/databricks_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/databricks_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/databricks_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/databricks_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/databricks_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/databricks_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/datasecurity_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/datasecurity_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/datasecurity_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/datasecurity_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/datasecurity_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/datasecurity_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/datasecurity_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/datasecurity_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/datasecurity_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/datasecurity_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/datasecurity_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/datasecurity_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_security_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_security_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_security_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_security_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_security_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_security_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_security_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_security_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_security_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_security_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/eh_security_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/eh_security_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/hci_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/hci_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/hci_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/hci_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/hci_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/hci_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/hci_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/hci_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/hci_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/hci_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/identity_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/identity_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/identity_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/identity_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/identity_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/identity_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/identity_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/identity_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/identity_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/identity_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/identity_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/identity_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/iot_hub_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/iot_hub_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/iot_hub_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/iot_hub_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/iot_hub_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/iot_hub_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/iot_hub_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/iot_hub_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/iot_hub_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/iot_hub_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/iot_hub_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/iot_hub_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/keyvault_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/keyvault_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/keyvault_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/keyvault_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/keyvault_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/keyvault_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/keyvault_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/keyvault_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/keyvault_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/keyvault_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/keyvault_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/keyvault_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/logic_app_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/logic_app_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/logic_app_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/logic_app_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/logic_app_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/logic_app_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/logic_app_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/logic_app_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/logic_app_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/logic_app_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/logic_app_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/logic_app_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/multitenancy_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/multitenancy_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/multitenancy_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/multitenancy_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/multitenancy_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/multitenancy_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/multitenancy_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/multitenancy_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/multitenancy_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/multitenancy_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/multitenancy_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/multitenancy_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/mysql_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/mysql_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/mysql_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/mysql_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/mysql_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/mysql_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/mysql_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/mysql_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/mysql_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/mysql_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/mysql_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/mysql_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_resiliency_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_resiliency_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_resiliency_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_resiliency_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_resiliency_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_resiliency_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_resiliency_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_resiliency_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/redis_resiliency_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/redis_resiliency_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/resiliency_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/resiliency_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/resiliency_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/resiliency_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/resiliency_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/resiliency_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/resiliency_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/resiliency_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/resiliency_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/resiliency_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/review_checklist_empty.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/review_checklist_empty.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/review_checklist_master_empty.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/review_checklist_master_empty.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/review_checklist_waf_empty.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/review_checklist_waf_empty.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sap_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sap_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sap_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sap_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sap_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sap_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sap_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sap_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sap_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sap_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sap_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sap_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/security_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/security_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/security_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/security_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/security_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/security_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/security_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/security_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/security_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/security_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/security_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/security_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/servicebus_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/servicebus_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/servicebus_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/servicebus_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/servicebus_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/servicebus_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/servicebus_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/servicebus_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/servicebus_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/servicebus_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/servicebus_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/servicebus_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sql_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sql_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sql_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sql_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sql_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sql_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sql_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sql_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sql_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sql_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sql_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sql_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_security_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_security_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_security_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_security_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_security_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_security_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_security_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_security_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/sqldb_security_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/sqldb_security_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/streamanalytics_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/streamanalytics_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/streamanalytics_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/streamanalytics_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/streamanalytics_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/streamanalytics_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/streamanalytics_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/streamanalytics_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/streamanalytics_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/streamanalytics_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/theaks_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/theaks_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/theaks_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/theaks_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/theaks_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/theaks_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/theaks_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/theaks_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/theaks_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/theaks_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/theaks_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/theaks_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf_checklist..xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf_checklist..xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/waf_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/waf_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/wafsg_checklist.en.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/wafsg_checklist.en.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/wafsg_checklist.es.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/wafsg_checklist.es.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/wafsg_checklist.ja.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/wafsg_checklist.ja.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/wafsg_checklist.ko.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/wafsg_checklist.ko.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/wafsg_checklist.pt.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/wafsg_checklist.pt.xlsx -------------------------------------------------------------------------------- /spreadsheet/macrofree/wafsg_checklist.zh-Hant.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/macrofree/wafsg_checklist.zh-Hant.xlsx -------------------------------------------------------------------------------- /spreadsheet/review_checklist.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/review_checklist.xlsm -------------------------------------------------------------------------------- /spreadsheet/review_checklists_scripts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/spreadsheet/review_checklists_scripts.xlsx -------------------------------------------------------------------------------- /workbooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/README.md -------------------------------------------------------------------------------- /workbooks/acr_checklist.en_counters_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/acr_checklist.en_counters_workbook.json -------------------------------------------------------------------------------- /workbooks/acr_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/acr_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/acr_checklist.en_workbook_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/acr_checklist.en_workbook_template.json -------------------------------------------------------------------------------- /workbooks/afd_checklist.en_counters_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/afd_checklist.en_counters_workbook.json -------------------------------------------------------------------------------- /workbooks/afd_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/afd_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/afd_checklist.en_workbook_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/afd_checklist.en_workbook_template.json -------------------------------------------------------------------------------- /workbooks/ai_lz_checklist.en_counters_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/ai_lz_checklist.en_counters_workbook.json -------------------------------------------------------------------------------- /workbooks/ai_lz_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/ai_lz_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/ai_lz_checklist.en_workbook_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/ai_lz_checklist.en_workbook_template.json -------------------------------------------------------------------------------- /workbooks/aks_checklist.en_counters_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/aks_checklist.en_counters_workbook.json -------------------------------------------------------------------------------- /workbooks/aks_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/aks_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/aks_checklist.en_workbook_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/aks_checklist.en_workbook_template.json -------------------------------------------------------------------------------- /workbooks/alz_checklist.en_counters_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/alz_checklist.en_counters_workbook.json -------------------------------------------------------------------------------- /workbooks/alz_checklist.en_network_counters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/alz_checklist.en_network_counters.json -------------------------------------------------------------------------------- /workbooks/alz_checklist.en_network_counters_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/alz_checklist.en_network_counters_template.json -------------------------------------------------------------------------------- /workbooks/alz_checklist.en_network_tabcounters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/alz_checklist.en_network_tabcounters.json -------------------------------------------------------------------------------- /workbooks/alz_checklist.en_network_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/alz_checklist.en_network_workbook.json -------------------------------------------------------------------------------- /workbooks/alz_checklist.en_network_workbook_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/alz_checklist.en_network_workbook_template.json -------------------------------------------------------------------------------- /workbooks/alz_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/alz_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/alz_checklist.en_workbook_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/alz_checklist.en_workbook_template.json -------------------------------------------------------------------------------- /workbooks/appdelivery_checklist.en_network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/appdelivery_checklist.en_network.json -------------------------------------------------------------------------------- /workbooks/appdelivery_checklist.en_network_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/appdelivery_checklist.en_network_workbook.json -------------------------------------------------------------------------------- /workbooks/appsvc_checklist.en_counters_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/appsvc_checklist.en_counters_workbook.json -------------------------------------------------------------------------------- /workbooks/appsvc_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/appsvc_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/appsvc_checklist.en_workbook_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/appsvc_checklist.en_workbook_template.json -------------------------------------------------------------------------------- /workbooks/appsvc_security_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/appsvc_security_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/azure_arc_checklist.en_counters_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/azure_arc_checklist.en_counters_workbook.json -------------------------------------------------------------------------------- /workbooks/azure_arc_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/azure_arc_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/azure_arc_checklist.en_workbook_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/azure_arc_checklist.en_workbook_template.json -------------------------------------------------------------------------------- /workbooks/azure_storage_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/azure_storage_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/blocks/block_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/blocks/block_arm.json -------------------------------------------------------------------------------- /workbooks/blocks/block_invisible_parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/blocks/block_invisible_parameter.json -------------------------------------------------------------------------------- /workbooks/blocks/block_itemgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/blocks/block_itemgroup.json -------------------------------------------------------------------------------- /workbooks/blocks/block_itemgroup_withcounters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/blocks/block_itemgroup_withcounters.json -------------------------------------------------------------------------------- /workbooks/blocks/block_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/blocks/block_link.json -------------------------------------------------------------------------------- /workbooks/blocks/block_linkgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/blocks/block_linkgroup.json -------------------------------------------------------------------------------- /workbooks/blocks/block_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/blocks/block_query.json -------------------------------------------------------------------------------- /workbooks/blocks/block_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/blocks/block_text.json -------------------------------------------------------------------------------- /workbooks/blocks/block_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/blocks/block_workbook.json -------------------------------------------------------------------------------- /workbooks/blocks/sample_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/blocks/sample_workbook.json -------------------------------------------------------------------------------- /workbooks/keyvault_checklist.en_counters_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/keyvault_checklist.en_counters_workbook.json -------------------------------------------------------------------------------- /workbooks/keyvault_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/keyvault_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/keyvault_checklist.en_workbook_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/keyvault_checklist.en_workbook_template.json -------------------------------------------------------------------------------- /workbooks/network_appdelivery_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/network_appdelivery_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/pictures/advanced_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/pictures/advanced_editor.png -------------------------------------------------------------------------------- /workbooks/pictures/aks_bcdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/pictures/aks_bcdr.png -------------------------------------------------------------------------------- /workbooks/sap_checklist.en_counters_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/sap_checklist.en_counters_workbook.json -------------------------------------------------------------------------------- /workbooks/sap_checklist.en_workbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/sap_checklist.en_workbook.json -------------------------------------------------------------------------------- /workbooks/sap_checklist.en_workbook_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/review-checklists/HEAD/workbooks/sap_checklist.en_workbook_template.json --------------------------------------------------------------------------------