Skip to content

Commit dfbf0d4

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into rolyon-aadroles-custom-roles-app-permissions-descriptions
2 parents 24f22ba + 992abb7 commit dfbf0d4

File tree

10 files changed

+128
-19
lines changed

10 files changed

+128
-19
lines changed

articles/azure-resource-manager/bicep/bicep-config-linter.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Linter settings for Bicep config
33
description: Describes how to customize configuration values for the Bicep linter
44
ms.topic: conceptual
5-
ms.date: 11/01/2022
5+
ms.date: 01/30/2023
66
---
77

88
# Add linter settings in the Bicep config file
@@ -89,6 +89,9 @@ The following example shows the rules that are available for configuration.
8989
"simplify-interpolation": {
9090
"level": "warning"
9191
},
92+
"use-parent-property": {
93+
"level": "warning"
94+
},
9295
"use-protectedsettings-for-commandtoexecute-secrets": {
9396
"level": "warning"
9497
},

articles/azure-resource-manager/bicep/child-resource-name-type.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ This article show different ways you can declare a child resource.
1717

1818
### Training resources
1919

20-
If you would rather learn about about child resources through step-by-step guidance, see [Deploy child and extension resources by using Bicep](/training/modules/child-extension-bicep-templates).
20+
If you would rather learn about child resources through step-by-step guidance, see [Deploy child and extension resources by using Bicep](/training/modules/child-extension-bicep-templates).
2121

2222
## Name and type pattern
2323

24-
In Bicep, you can specify the child resource either within the parent resource or outside of the parent resource. The values you provide for the resource name and resource type vary based on how you declare the child resource. However, the full name and type always resolve to the same pattern.
24+
In Bicep, you can specify the child resource either within the parent resource or outside of the parent resource. The values you provide for the resource name and resource type vary based on how you declare the child resource. However, the full name and type always resolve to the same pattern.
2525

2626
The **full name** of the child resource uses the pattern:
2727

@@ -47,7 +47,7 @@ If you have more than two levels in the hierarchy, keep repeating parent resourc
4747
{resource-provider-namespace}/{parent-resource-type}/{child-level1-resource-type}/{child-level2-resource-type}
4848
```
4949

50-
If you count the segments between `/` characters, the number of segments in the type is always one more than the number of segments in the name.
50+
If you count the segments between `/` characters, the number of segments in the type is always one more than the number of segments in the name.
5151

5252
## Within parent resource
5353

@@ -113,7 +113,7 @@ You can also use the full resource name and type when declaring the child resour
113113
:::code language="bicep" source="~/azure-docs-bicep-samples/syntax-samples/child-resource-name-type/fullnamedeclaration.bicep" highlight="10,11,17,18":::
114114

115115
> [!IMPORTANT]
116-
> Setting the full resource name and type isn't the recommended approach. It's not as type safe as using one of the other approaches.
116+
> Setting the full resource name and type isn't the recommended approach. It's not as type safe as using one of the other approaches. For more information, see [Linter rule: use parent property](./linter-rule-use-parent-property.md).
117117
118118
## Next steps
119119

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
---
2+
title: Linter rule - use parent property
3+
description: Linter rule - use parent property
4+
ms.topic: conceptual
5+
ms.date: 01/30/2023
6+
---
7+
8+
# Linter rule - use parent property
9+
10+
When defined outside of the parent resource, you format name of the child resource with slashes to include the parent name. Setting the full resource name isn't the recommended approach. The syntax can be simplified by using the `parent` property. For more information, see [Full resource name outside parent](./child-resource-name-type.md#full-resource-name-outside-parent).
11+
12+
When defined outside of the parent resource, you use slashes to include the parent name in the name of the child resource. Setting the full resource name with parent resource name is not recommended. The `parent` property can be used to simplify the syntax. See [Full resource name outside parent](./child-resource-name-type.md#full-resource-name-outside-parent).
13+
14+
## Linter rule code
15+
16+
Use the following value in the [Bicep configuration file](bicep-config-linter.md) to customize rule settings:
17+
18+
`use-parent-property`
19+
20+
## Solution
21+
22+
The following example fails this test because of the name values for `service` and `share`:
23+
24+
```bicep
25+
param location string = resourceGroup().location
26+
27+
resource storage 'Microsoft.Storage/storageAccounts@2021-02-01' = {
28+
name: 'examplestorage'
29+
location: location
30+
kind: 'StorageV2'
31+
sku: {
32+
name: 'Standard_LRS'
33+
}
34+
}
35+
36+
resource service 'Microsoft.Storage/storageAccounts/fileServices@2021-02-01' = {
37+
name: 'examplestorage/default'
38+
dependsOn: [
39+
storage
40+
]
41+
}
42+
43+
resource share 'Microsoft.Storage/storageAccounts/fileServices/shares@2021-02-01' = {
44+
name: 'examplestorage/default/exampleshare'
45+
dependsOn: [
46+
service
47+
]
48+
}
49+
```
50+
51+
You can fix the problem by using the `parent` property:
52+
53+
```bicep
54+
param location string = resourceGroup().location
55+
56+
resource storage 'Microsoft.Storage/storageAccounts@2021-02-01' = {
57+
name: 'examplestorage'
58+
location: location
59+
kind: 'StorageV2'
60+
sku: {
61+
name: 'Standard_LRS'
62+
}
63+
}
64+
65+
resource service 'Microsoft.Storage/storageAccounts/fileServices@2021-02-01' = {
66+
parent: storage
67+
name: 'default'
68+
}
69+
70+
resource share 'Microsoft.Storage/storageAccounts/fileServices/shares@2021-02-01' = {
71+
parent: service
72+
name: 'exampleshare'
73+
}
74+
```
75+
76+
You can fix the issue automatically by selecting **Quick Fix** as shown on the following screenshot:
77+
78+
:::image type="content" source="./media/linter-rule-use-parent-property/bicep-linter-rule-use-parent-property-quick-fix.png" alt-text="Screenshot of use parent property quick fix.":::
79+
80+
## Next steps
81+
82+
For more information about the linter, see [Use Bicep linter](./linter.md).

articles/azure-resource-manager/bicep/linter.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Use Bicep linter
33
description: Learn how to use Bicep linter.
44
ms.topic: conceptual
5-
ms.date: 11/01/2022
5+
ms.date: 01/30/2023
66
---
77

88
# Use Bicep linter
@@ -39,6 +39,7 @@ The default set of linter rules is minimal and taken from [arm-ttk test cases](.
3939
- [secure-params-in-nested-deploy](./linter-rule-secure-params-in-nested-deploy.md)
4040
- [secure-secrets-in-params](./linter-rule-secure-secrets-in-parameters.md)
4141
- [simplify-interpolation](./linter-rule-simplify-interpolation.md)
42+
- [use-parent-property](./linter-rule-use-parent-property.md)
4243
- [use-protectedsettings-for-commandtoexecute-secrets](./linter-rule-use-protectedsettings-for-commandtoexecute-secrets.md)
4344
- [use-recent-api-versions](./linter-rule-use-recent-api-versions.md)
4445
- [use-resource-id-functions](./linter-rule-use-resource-id-functions.md)
Loading

articles/azure-resource-manager/bicep/toc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,9 @@
458458
- name: Use explicit values for module location parameters
459459
displayName: linter
460460
href: linter-rule-explicit-values-for-loc-params.md
461+
- name: Use parent property
462+
displayName: linter
463+
href: linter-rule-use-parent-property.md
461464
- name: use recent API versions
462465
displayName: linter
463466
href: linter-rule-use-recent-api-versions.md

articles/cloud-services/cloud-services-guestos-update-matrix.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.service: cloud-services
1111
ms.topic: article
1212
ms.tgt_pltfrm: na
1313
ms.workload: tbd
14-
ms.date: 1/19/2023
14+
ms.date: 1/31/2023
1515
ms.author: gunnarc
1616
---
1717
# Azure Guest OS releases and SDK compatibility matrix
@@ -37,6 +37,9 @@ Unsure about how to update your Guest OS? Check [this][cloud updates] out.
3737

3838
## News updates
3939

40+
###### **January 31, 2023**
41+
The January Guest OS has released.
42+
4043
###### **January 19, 2023**
4144
The December Guest OS has released.
4245

@@ -205,8 +208,9 @@ The September Guest OS has released.
205208

206209
| Configuration string | Release date | Disable date |
207210
| --- | --- | --- |
211+
| WA-GUEST-OS-7.21_202301-011 | January 31, 2023 | Post 7.23 |
208212
| WA-GUEST-OS-7.20_202212-01 | January 19, 2023 | Post 7.22 |
209-
| WA-GUEST-OS-7.19_202211-01 | December 12, 2022 | Post 7.21 |
213+
|~~WA-GUEST-OS-7.19_202211-01~~| December 12, 2022 | January 31, 2023 |
210214
|~~WA-GUEST-OS-7.18_202210-02~~| November 4, 2022 | January 19, 2023 |
211215
|~~WA-GUEST-OS-7.16_202209-01~~| September 29, 2022 | December 12, 2022 |
212216
|~~WA-GUEST-OS-7.15_202208-01~~| September 2, 2022 | November 4, 2022 |
@@ -234,8 +238,9 @@ The September Guest OS has released.
234238

235239
| Configuration string | Release date | Disable date |
236240
| --- | --- | --- |
241+
| WA-GUEST-OS-6.53_202301-01 | January 31, 2023 | Post 6.55 |
237242
| WA-GUEST-OS-6.52_202212-01 | January 19, 2023 | Post 6.54 |
238-
| WA-GUEST-OS-6.51_202211-01 | December 12, 2022 | Post 6.53 |
243+
|~~WA-GUEST-OS-6.51_202211-01~~| December 12, 2022 | January 31, 2023 |
239244
|~~WA-GUEST-OS-6.50_202210-02~~| November 4, 2022 | January 19, 2023 |
240245
|~~WA-GUEST-OS-6.48_202209-01~~| September 29, 2022 | December 12, 2022 |
241246
|~~WA-GUEST-OS-6.47_202208-01~~| September 2, 2022 | November 4, 2022 |
@@ -297,8 +302,9 @@ The September Guest OS has released.
297302

298303
| Configuration string | Release date | Disable date |
299304
| --- | --- | --- |
305+
| WA-GUEST-OS-5.77_202301-01 | January 31, 2023 | Post 5.79 |
300306
| WA-GUEST-OS-5.76_202212-01 | January 19, 2023 | Post 5.78 |
301-
| WA-GUEST-OS-5.75_202211-01 | December 12, 2022 | Post 5.77 |
307+
|~~WA-GUEST-OS-5.75_202211-01~~| December 12, 2022 | January 31, 2023 |
302308
|~~WA-GUEST-OS-5.74_202210-02~~| November 4, 2022 | January 19, 2023 |
303309
|~~WA-GUEST-OS-5.72_202209-01~~| September 29, 2022 | December 12, 2022 |
304310
|~~WA-GUEST-OS-5.71_202208-01~~| September 2, 2022 | November 4, 2022 |
@@ -357,8 +363,9 @@ The September Guest OS has released.
357363

358364
| Configuration string | Release date | Disable date |
359365
| --- | --- | --- |
366+
| WA-GUEST-OS-4.113_202301-01 | January 31, 2023 | Post 4.115 |
360367
| WA-GUEST-OS-4.112_202212-01 | January 19, 2023 | Post 4.114 |
361-
| WA-GUEST-OS-4.111_202211-01 | December 12, 2022 | Post 4.113 |
368+
|~~WA-GUEST-OS-4.111_202211-01~~| December 12, 2022 | January 31, 2023 |
362369
|~~WA-GUEST-OS-4.110_202210-02~~| November 4, 2022 | January 19, 2023 |
363370
|~~WA-GUEST-OS-4.108_202209-01~~| September 29, 2022 | December 12, 2022 |
364371
|~~WA-GUEST-OS-4.107_202208-01~~| September 2, 2022 | November 4, 2022 |
@@ -417,8 +424,9 @@ The September Guest OS has released.
417424

418425
| Configuration string | Release date | Disable date |
419426
| --- | --- | --- |
427+
| WA-GUEST-OS-3.120_202301-01 | January 31, 2023 | Post 3.122 |
420428
| WA-GUEST-OS-3.119_202212-01 | January 19, 2023 | Post 3.121 |
421-
| WA-GUEST-OS-3.118_202211-01 | December 12, 2022 | Post 3.120 |
429+
|~~WA-GUEST-OS-3.118_202211-01~~| December 12, 2022 | January 31, 2023 |
422430
|~~WA-GUEST-OS-3.117_202210-02~~| November 4, 2022 | January 19, 2023 |
423431
|~~WA-GUEST-OS-3.115_202209-01~~| September 29, 2022 | December 12, 2022 |
424432
|~~WA-GUEST-OS-3.114_202208-01~~| September 2, 2022 | November 4, 2022 |
@@ -477,8 +485,9 @@ The September Guest OS has released.
477485

478486
| Configuration string | Release date | Disable date |
479487
| --- | --- | --- |
488+
| WA-GUEST-OS-2.133_202301-01 | January 31, 2023 | Post 2.135 |
480489
| WA-GUEST-OS-2.132_202212-01 | January 19, 2023 | Post 2.134 |
481-
| WA-GUEST-OS-2.131_202211-01 | December 12, 2022 | Post 2.133 |
490+
|~~WA-GUEST-OS-2.131_202211-01~~| December 12, 2022 | January 31, 2023 |
482491
|~~WA-GUEST-OS-2.130_202210-02~~| November 4, 2022 | January 19, 2023 |
483492
|~~WA-GUEST-OS-2.128_202209-01~~| September 29, 2022 | December 12, 2022 |
484493
|~~WA-GUEST-OS-2.127_202208-01~~| September 2, 2022 | November 4, 2022 |

articles/key-vault/general/private-link-diagnostics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ An important notion is that the private links feature only *gives* access to you
7676
1. Open the Azure portal and open your key vault resource.
7777
2. In the left menu, select **Networking**.
7878
3. Make sure the **Firewalls and virtual networks** tab is selected on top.
79-
4. Make sure the option **Private endpoint and selected networks** is selected. If you find **All networks** select, that explains why external clients are still able to access the key vault.
79+
4. If you find **Allow public access from all networks** selected, that explains why external clients are still able to access the key vault. If you would like the Key Vault to be accessible only over Private Link, select **Disable Public Access**.
8080

8181
The following statements also apply to firewall settings:
8282

articles/sentinel/sentinel-solution.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,7 @@ ms.collection:
1212

1313
# Monitor Zero Trust (TIC 3.0) security architectures with Microsoft Sentinel
1414

15-
[Zero Trust](/security/zero-trust/zero-trust-overview) is a security strategy for designing and implementing security principles that assumes breach, and verifies each request as though it originated from an uncontrolled network. A Zero Trust model implements the following security principles:
16-
17-
- **Verify explicitly**: Always authenticate and authorize based on all available data points.
18-
- **Use least privilege access**: Limit user access with Just-In-Time and Just-Enough-Access (JIT/JEA), risk-based adaptive policies, and data protection.
19-
- **Assume breach**: Minimize blast radius and segment access. Verify end-to-end encryption and use analytics to get visibility, drive threat detection, and improve defenses.
15+
[!INCLUDE [zero-trust-principles](../../includes/security/zero-trust-principles.md)]
2016

2117
This article describes how to use the Microsoft Sentinel **Zero Trust (TIC 3.0)** solution, which helps governance and compliance teams monitor and respond to Zero Trust requirements according to the [TRUSTED INTERNET CONNECTIONS (TIC) 3.0](https://www.cisa.gov/tic) initiative.
2218

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
author: batamig
3+
ms.service: security
4+
ms.topic: include
5+
ms.date: 01/31/2023
6+
ms.author: bagol
7+
ms.collection:
8+
- zerotrust-services
9+
---
10+
11+
[Zero Trust](/security/zero-trust/zero-trust-overview) is a security strategy for designing and implementing the following sets of security principles:
12+
13+
|Verify explicitly |Use least privilege access |Assume breach |
14+
|---------|---------|---------|
15+
|Always authenticate and authorize based on all available data points. | Limit user access with Just-In-Time and Just-Enough-Access (JIT/JEA), risk-based adaptive policies, and data protection. | Minimize blast radius and segment access. Verify end-to-end encryption and use analytics to get visibility, drive threat detection, and improve defenses. |

0 commit comments

Comments
 (0)