Skip to content

Commit 5c1b266

Browse files
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into pauljewell-copy-blob
2 parents 3c67358 + 701f643 commit 5c1b266

14 files changed

+128
-2235
lines changed

articles/active-directory/standards/index.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ summary: Azure and Azure Active Directory offer compliance certifications. Learn
66
metadata:
77
title: Implement identity standards with Azure Active Directory
88
description: "Azure and Azure Active Directory offer compliance certifications. Learn to configure your environment to meet governmental and industry standards."
9-
manager: mtillman
10-
ms.author: baselden
9+
manager: martinco
10+
ms.author: jricketts
1111
ms.collection: na
1212
ms.date: 04/29/2022
1313
ms.service: active-directory
@@ -32,6 +32,8 @@ landingContent:
3232
url: configure-azure-active-directory-for-fedramp-high-impact.md
3333
- text: Configure Azure Active Directory for CMMC compliance
3434
url: configure-azure-active-directory-for-cmmc-compliance.md
35+
- text: Configure Azure Active Directory for HIPAA compliance
36+
url: hipaa-configure-azure-active-directory-for-compliance.md
3537

3638
# Card
3739
- title: Understand NIST AALs
@@ -99,3 +101,15 @@ landingContent:
99101
- text: Configure Azure Active Directory to meet CMMC Level 2
100102
url: configure-cmmc-level-2-additional-controls.md
101103

104+
# Card
105+
- title: Achieve HIPAA compliance
106+
linkLists:
107+
- linkListType: how-to-guide
108+
links:
109+
- text: Configure access control safeguards
110+
url: hipaa-access-controls.md
111+
- text: Configure audit control safeguards
112+
url: hipaa-audit-controls.md
113+
- text: Configure other safeguards
114+
url: hipaa-other-controls.md
115+

articles/load-balancer/skus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.author: mbender
1313
# Azure Load Balancer SKUs
1414

1515
>[!Important]
16-
>On September 30, 2025, Basic Load Balancer will be retired. For more information, see the [official announcement](https://azure.microsoft.com/updates/azure-basic-load-balancer-will-be-retired-on-30-september-2025-upgrade-to-standard-load-balancer/). If you are currently using Basic Load Balancer, make sure to upgrade to Standard Load Balancer prior to the retirement date. This article will help guide you through the upgrade process.
16+
>On September 30, 2025, Basic Load Balancer will be retired. For more information, see the [official announcement](https://azure.microsoft.com/updates/azure-basic-load-balancer-will-be-retired-on-30-september-2025-upgrade-to-standard-load-balancer/). If you are currently using Basic Load Balancer, make sure to upgrade to Standard Load Balancer prior to the retirement date. For guidance on upgrading, visit [Upgrading from Basic Load Balancer - Guidance](load-balancer-basic-upgrade-guidance.md).
1717
1818
Azure Load Balancer has three SKUs.
1919

articles/machine-learning/azure-machine-learning-ci-image-release-notes.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,22 @@ Azure Machine Learning checks and validates any machine learning packages that m
2020

2121
Main updates provided with each image version are described in the below sections.
2222

23+
## April 7, 2023
24+
Version: `23.04.07`
25+
26+
Main changes:
27+
28+
- `Azure Machine Learning SDK` to version `1.49.0`
29+
- `Certifi` updated to `2022.9.24`
30+
- `.Net` updated from `3.1` (EOL) to `6.0`
31+
- `Pyspark` update to `3.3.1` (mitigating log4j 1.2.17 and common-text-1.6 vulnerabilities)
32+
- Default `intellisense` to Python `3.10` on the CI
33+
- Bug fixes and stability improvements
34+
35+
Main environment specific updates:
36+
37+
- `Azureml_py38` environment is now the default.
38+
2339
## January 19, 2023
2440
Version: `23.01.19`
2541

articles/machine-learning/how-to-create-manage-compute-instance.md

Lines changed: 31 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -742,41 +742,44 @@ To create a compute instance, you'll need permissions for the following actions:
742742
* *Microsoft.MachineLearningServices/workspaces/computes/write*
743743
* *Microsoft.MachineLearningServices/workspaces/checkComputeNameAvailability/action*
744744

745-
### Audit and observe compute instance version
745+
## Audit and observe compute instance version
746746

747747
Once a compute instance is deployed, it does not get automatically updated. Microsoft [releases](azure-machine-learning-ci-image-release-notes.md) new VM images on a monthly basis. To understand options for keeping recent with the latest version, see [vulnerability management](concept-vulnerability-management.md#compute-instance).
748748

749-
To keep track of whether an instance's operating system version is current, you could query its version using the Studio UI. In your workspace in Azure Machine Learning studio, select Compute, then select compute instance on the top. Select a compute instance's compute name to see its properties including the current operating system. Enable 'audit and observe compute instance os version' under the previews management panel to see these preview properties.
749+
To keep track of whether an instance's operating system version is current, you could query its version using the CLI, SDK or Studio UI.
750750

751-
Administrators can use [Azure Policy](policy-reference.md) definitions to audit instances that are running on outdated operating system versions across workspaces and subscriptions. The following is a sample policy:
751+
# [Studio UI](#tab/azure-studio)
752752

753-
```json
754-
{
755-
"mode": "All",
756-
"policyRule": {
757-
"if": {
758-
"allOf": [
759-
{
760-
"field": "type",
761-
"equals": "Microsoft.MachineLearningServices/workspaces/computes"
762-
},
763-
{
764-
"field": "Microsoft.MachineLearningServices/workspaces/computes/computeType",
765-
"equals": "ComputeInstance"
766-
},
767-
{
768-
"field": "Microsoft.MachineLearningServices/workspaces/computes/osImageMetadata.isLatestOsImageVersion",
769-
"equals": "false"
770-
}
771-
]
772-
},
773-
"then": {
774-
"effect": "Audit"
775-
}
776-
}
777-
}
753+
In your workspace in Azure Machine Learning studio, select Compute, then select compute instance on the top. Select a compute instance's compute name to see its properties including the current operating system.
754+
755+
# [Python SDK](#tab/python)
756+
757+
[!INCLUDE [sdk v2](../../includes/machine-learning-sdk-v2.md)]
758+
759+
```python
760+
from azure.ai.ml.entities import ComputeInstance, AmlCompute
761+
762+
# Display operating system version
763+
instance = ml_client.compute.get("myci")
764+
print instance.os_image_metadata
778765
```
779766

767+
For more information on the classes, methods, and parameters used in this example, see the following reference documents:
768+
769+
* [`AmlCompute` class](/python/api/azure-ai-ml/azure.ai.ml.entities.amlcompute)
770+
* [`ComputeInstance` class](/python/api/azure-ai-ml/azure.ai.ml.entities.computeinstance)
771+
772+
# [Azure CLI](#tab/azure-cli)
773+
774+
[!INCLUDE [cli v2](../../includes/machine-learning-cli-v2.md)]
775+
776+
```azurecli
777+
az ml compute show --name "myci"
778+
```
779+
---
780+
781+
IT administrators can use [Azure Policy](./../governance/policy/overview.md) to monitor the inventory of instances across workspaces in Azure Policy compliance portal. Assign the built-in policy [Audit Azure Machine Learning Compute Instances with an outdated operating system](https://ms.portal.azure.com/#view/Microsoft_Azure_Policy/PolicyDetailBlade/definitionId/%2Fproviders%2FMicrosoft.Authorization%2FpolicyDefinitions%2Ff110a506-2dcb-422e-bcea-d533fc8c35e2) on an Azure subscription or Azure management group scope.
782+
780783
## Next steps
781784

782785
* [Access the compute instance terminal](how-to-access-terminal.md)

articles/reliability/availability-zones-baseline.md

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,24 @@ When creating reliable workloads, you can choose at least one of the following a
2020

2121
- **Zone-redundant**. A zone-redundant configuration provides resources that are replicated or distributed across zones automatically.
2222

23-
In addition to the two availability zone options, zonal and zone-redundant, Azure offers **Global services**, meaning that they're available globally regardless of region. Because these services are always available across regions, they're resilient to both regional and zonal outages. You don't need to configure or enable these services.
23+
24+
In addition to the two availability zone options, zonal and zone-redundant, Azure offers **Global services**, meaning that they're available globally regardless of region. Because these services are always available across regions, they're resilient to both regional and zonal outages.
2425

2526
To see which Azure services support availability zones, see [Availability zone service and regional support](availability-zones-service-support.md).
2627

2728

2829
>[!NOTE]
29-
>When you don't select a zone configuration for your resource, whether zonal or zone-redundant, the resource and its sub-components won't be zone resilient and can go down during a zonal outage in that region.
30+
>When you don't select a zone configuration for your resource, either zonal or zone-redundant, the resource and its sub-components won't be zone resilient and can go down during a zonal outage in that region.
3031
3132
## Considerations for migrating to availability zone support
3233

33-
There are many ways to create a reliable Azure application with availability zones that meet both SLAs and reliability targets. Follow the steps in this section to choose the right approach for your needs based on technical and regulatory considerations, service capabilities, data residency, compliance requirements, and latency.
34+
35+
There are a number of possible ways to create a reliable Azure application with availability zones that meet both SLAs and reliability targets. Follow the steps below to choose the right approach for your needs based on technical and regulatory considerations, service capabilities, data residency, compliance requirements, and latency.
3436

3537
### Step 1: Check if the Azure region supports availability zones
3638

37-
In this first step, you need to [validate](availability-zones-service-support.md) that your selected Azure region support availability zones and the required Azure services for your application.
39+
In this first step, you'll need to [validate](availability-zones-service-support.md) that your selected Azure region support availability zones as well as the required Azure services for your application.
40+
3841

3942
If your region supports availability zones, we highly recommended that you configure your workload for availability zones. If your region doesn't support availability zones, you'll need to use [Azure Resource Mover guidance](/azure/resource-mover/move-region-availability-zone) to migrate to a region that offers availability zone support.
4043

@@ -50,16 +53,16 @@ To check for regional support of services, see [Products available by region](ht
5053

5154
To list the available VM SKUs by Azure region and zone, see [Check VM SKU availability](/azure/virtual-machines/windows/create-powershell-availability-zone#check-vm-sku-availability).
5255

53-
If your region doesn't support the services and SKUs that your application requires, you'll need to go back to [Step 1: Check the product availability in the Azure region](#step-1-check-if-the-azure-region-supports-availability-zones) to find a new region.
56+
If your region doesn't support the services and SKUs that your application requires, you'll need to go back to [Step 1: Check the product availability in the Azure region](#step-1-check-if-the-azure-region-supports-availability-zones) to find a new region that supports the services and SKUs that your application requires. We highly recommended that you configure your workload with zone-redundancy.
5457

55-
the services and SKUs that your application requires, we highly recommended that you configure your workload with zone-redundancy. For zonal high availability of Azure IaaS Virtual Machines, use [Virtual Machine Scale Sets Flex](/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-orchestration-modes) to spread VMs across multiple availability zones.
58+
For zonal high availability of Azure IaaS Virtual Machines, use [Virtual Machine Scale Sets (VMSS) Flex](/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-orchestration-modes) to spread VMs across multiple availability zones.
5659

5760

5861
### Step 3: Consider your application requirements
5962

6063
In this final step, you'll determine, based on application requirements, which kind of availability zone support is most suitable to your application.
6164

62-
Below are three important questions that can help you choose the correct availability zone deployment:
65+
Below are three important questions that will help you choose the correct availability zone deployment:
6366

6467
#### Does your application include latency sensitive components?
6568

@@ -77,16 +80,22 @@ For a [distributed microservices model](/azure/architecture/guide/architecture-s
7780
With a zonal deployment, you must:
7881

7982
1. Identify latency sensitive resources or services in your architecture.
83+
8084
1. Confirm that the latency sensitive resources or services support zonal deployment.
85+
8186
1. Co-locate the latency sensitive resources or services in same zone. Other services in your architecture may continue to remain zone redundant.
82-
1. Replicate the latency sensitive zonal services across multiple availability zones to ensure you're zone resilient.
87+
88+
1. Replicate the latency sensitive zonal services across multiple availability zones to ensure zone resiliency.
89+
8390
1. Load balance between the multiple zonal deployments with a standard or global load balancers.
8491

8592
If the Azure service supports availability zones, we highly recommend that you use zone-redundancy by spreading nodes across the zones to get higher uptime SLA and protection against zonal outages.
8693

87-
For a 3-tier application, it's important to understand the state (stateful or stateless) of each tier (application, business, and data). State knowledge helps you to architect in alignment with the best practices and guidance according to the type of workload.
8894

89-
For specialized workload on Azure as below examples, refer to the respective landing zone architecture guidance and best practices.
95+
For a 3-tier application it is important to understand the application, business, and data tiers; as well as their state (stateful or stateless) to architect in alignment with the best practices and guidance according to the type of workload.
96+
97+
For specialized workloads on Azure as below examples, please refer to the respective landing zone architecture guidance and best practices.
98+
9099

91100
- SAP
92101
- [SAP workload configurations with Azure Availability Zones](/azure/sap/workloads/high-availability-zones)
@@ -105,7 +114,7 @@ For specialized workload on Azure as below examples, refer to the respective lan
105114
- [Oracle on Azure architecture design](/azure/architecture/solution-ideas/articles/oracle-on-azure-start-here )
106115

107116

108-
#### Do you want to achieve BCDR in the same Azure region due to compliance, data residency, or governance requirements?
117+
#### Do you want to achieve Business Continuity and Disaster Recovery in the same Azure region due to compliance, data residency, or governance requirements?
109118

110119
To achieve business continuity and disaster recovery within the same region and when there **is no regional pair**, we highly recommend that you configure your workload with zone-redundancy. A single-region approach is also applicable to certain industries that have strict data residency and governance requirements within the same Azure region. To learn how to replicate, failover, and failback Azure virtual machines from one availability zone to another within the same Azure region, see [Enable Azure VM disaster recovery between availability zones](/azure/site-recovery/azure-to-azure-how-to-enable-zone-to-zone-disaster-recovery).
111120

articles/storage/.openpublishing.redirection.storage.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,41 @@
9090
"redirect_url": "/azure/storage/blobs/data-lake-storage-best-practices",
9191
"redirect_document_id": false
9292
},
93+
{
94+
"source_path_from_root": "/articles/storage/common/storage-use-azcopy-troubleshoot.md",
95+
"redirect_url": "/troubleshoot/azure/azure-storage/storage-use-azcopy-troubleshoot",
96+
"redirect_document_id": false
97+
},
98+
{
99+
"source_path_from_root": "/articles/storage/common/storage-explorer-troubleshooting.md",
100+
"redirect_url": "/troubleshoot/azure/azure-storage/storage-explorer-troubleshooting",
101+
"redirect_document_id": false
102+
},
103+
{
104+
"source_path_from_root": "/articles/storage/common/troubleshoot-storage-performance.md",
105+
"redirect_url": "/troubleshoot/azure/azure-storage/troubleshoot-storage-performance",
106+
"redirect_document_id": false
107+
},
108+
{
109+
"source_path_from_root": "/articles/storage/common/troubleshoot-storage-availability.md",
110+
"redirect_url": "/troubleshoot/azure/azure-storage/troubleshoot-storage-availability",
111+
"redirect_document_id": false
112+
},
113+
{
114+
"source_path_from_root": "/articles/storage/common/troubleshoot-storage-client-application-errors.md",
115+
"redirect_url": "/troubleshoot/azure/azure-storage/troubleshoot-storage-client-application-errors",
116+
"redirect_document_id": false
117+
},
118+
{
119+
"source_path_from_root": "/articles/storage/common/storage-monitoring-diagnosing-troubleshooting.md",
120+
"redirect_url": "/troubleshoot/azure/azure-storage/storage-monitoring-diagnosing-troubleshooting",
121+
"redirect_document_id": false
122+
},
123+
{
124+
"source_path_from_root": "/articles/storage/common/troubleshoot-latency-storage-analytics-logs.md",
125+
"redirect_url": "/troubleshoot/azure/azure-storage/troubleshoot-latency-storage-analytics-logs",
126+
"redirect_document_id": false
127+
},
93128
{
94129
"source_path_from_root": "/articles/storage/blobs/data-lake-storage-quickstart-create-account.md",
95130
"redirect_url": "/azure/storage/common/storage-account-create",

0 commit comments

Comments
 (0)