Skip to content

Commit 4913d4d

Browse files
authored
Merge pull request #48819 from wwlpublish/34fb3855461baeb786c6a581082274bd0454a38ad4920dea36bafa74ac768be7-live
Modules/M07-design-implement-private-access-to-azure-services
2 parents 15fa078 + d5e76d2 commit 4913d4d

11 files changed

+12
-10
lines changed

learn-pr/wwl-azure/design-implement-private-access-to-azure-services/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Introduction
88
description: "Introduction"
9-
ms.date: 01/06/2025
9+
ms.date: 01/23/2025
1010
author: wwlpublish
1111
ms.author: jileary
1212
ms.topic: unit

learn-pr/wwl-azure/design-implement-private-access-to-azure-services/2-explain-virtual-network-service-endpoints.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Explain virtual network service endpoints
88
description: "Explain virtual network service endpoints"
9-
ms.date: 01/06/2025
9+
ms.date: 01/23/2025
1010
author: wwlpublish
1111
ms.author: jileary
1212
ms.topic: unit

learn-pr/wwl-azure/design-implement-private-access-to-azure-services/3-define-private-link-service-private-endpoint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Define Private Link Service and private endpoint
88
description: "Define Private Link Service and private endpoint"
9-
ms.date: 01/06/2025
9+
ms.date: 01/23/2025
1010
author: wwlpublish
1111
ms.author: jileary
1212
ms.topic: unit

learn-pr/wwl-azure/design-implement-private-access-to-azure-services/4-integrate-private-link-dns.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Integrate private endpoint with Domain Name Service
88
description: "Integrate private endpoint with Domain Name Service"
9-
ms.date: 01/06/2025
9+
ms.date: 01/23/2025
1010
author: wwlpublish
1111
ms.author: jileary
1212
ms.topic: unit

learn-pr/wwl-azure/design-implement-private-access-to-azure-services/5-exercise-restrict-network-paas-resources-virtual-network-service-endpoints.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: 'Exercise: Restrict network access to PaaS resources with virtual network service endpoints using the Azure portal'
88
description: "Exercise: Restrict network access to PaaS resources with virtual network service endpoints using the Azure portal"
9-
ms.date: 01/06/2025
9+
ms.date: 01/23/2025
1010
author: wwlpublish
1111
ms.author: jileary
1212
ms.topic: unit

learn-pr/wwl-azure/design-implement-private-access-to-azure-services/6-exercise-create-azure-private-endpoint-using-azure-powershell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: 'Exercise: Create an Azure private endpoint using Azure PowerShell'
88
description: "Exercise: Create an Azure private endpoint using Azure PowerShell"
9-
ms.date: 01/06/2025
9+
ms.date: 01/23/2025
1010
author: wwlpublish
1111
ms.author: jileary
1212
ms.topic: unit

learn-pr/wwl-azure/design-implement-private-access-to-azure-services/7-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Summary
88
description: "Summary"
9-
ms.date: 01/06/2025
9+
ms.date: 01/23/2025
1010
author: wwlpublish
1111
ms.author: jileary
1212
ms.topic: unit

learn-pr/wwl-azure/design-implement-private-access-to-azure-services/includes/2-explain-virtual-network-service-endpoints.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Here's' an example route table, before enabling a Service Endpoint.
2828
| Default | Active | 10.1.1.0/24 | VNet |
2929
| Default | Active | 0.0.0.0./0 | Internet |
3030
| Default | Active | 10.0.0.0/8 | None |
31-
| Default | Active | 100.64.0.0./ | None |
31+
| Default | Active | 100.64.0.0/10 | None |
3232
| Default | Active | 192.168.0.0/16 | None |
3333

3434
Here's an example route table after you add two Service Endpoints to the virtual network.
@@ -38,7 +38,7 @@ Here's an example route table after you add two Service Endpoints to the virtual
3838
| Default | Active | 10.1.1.0/24 | VNet |
3939
| Default | Active | 0.0.0.0./0 | Internet |
4040
| Default | Active | 10.0.0.0/8 | None |
41-
| Default | Active | 100.64.0.0./ | None |
41+
| Default | Active | 100.64.0.0/10 | None |
4242
| Default | Active | 192.168.0.0/16 | None |
4343
| Default | Active | 20.38.106.0/23, 10 more | VirtualNetworkServiceEndpoint |
4444
| Default | Active | 20.150.2.0/23, 9 more | VirtualNetworkServiceEndpoint |

learn-pr/wwl-azure/design-implement-private-access-to-azure-services/includes/3-define-private-link-service-private-endpoint.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22

3+
34
## What is Azure Private Link?
45

56
Azure Private Link enables you to access Azure PaaS Services and Azure hosted customer-owned/partner services over a Private Endpoint in your virtual network.

learn-pr/wwl-azure/design-implement-private-access-to-azure-services/includes/4-integrate-private-link-dns.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22

3+
34
Private DNS zones are typically hosted in the same Azure subscription where the hub VNet is deployed. This central hosting practice is recommended for cross-premises DNS name resolution. In most cases, only networking and identity administrators have permissions to manage DNS records in these zones.
45

56
## Azure Private Endpoint DNS configuration

0 commit comments

Comments
 (0)