Skip to content

Commit 52f4a96

Browse files
authored
Merge pull request #294913 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 39fc3dc + ba21c9e commit 52f4a96

File tree

9 files changed

+33
-19
lines changed

9 files changed

+33
-19
lines changed

articles/automation/extension-based-hybrid-runbook-worker-install.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ If extension-based Hybrid Worker is using custom Hybrid Worker credentials, then
7777
| Arc-enabled Server | C:\ProgramData\AzureConnectedMachineAgent\Tokens (read) </br> C:\Packages\Plugins\Microsoft.Azure.Automation.HybridWorker.HybridWorkerForWindows (read and execute).
7878

7979
> [!NOTE]
80-
> When a system has UAC/LUA in place, permissions must be granted directly and not through any group membership. [Learn more](troubleshoot/extension-based-hybrid-runbook-worker.md#scenario-runbooks-go-into-a-suspended-state-on-a-hybrid-runbook-worker-when-using-a-custom-account-on-a-server-with-user-account-control-uac-enabled).
80+
> - When a system has UAC/LUA in place, permissions must be granted directly and not through any group membership. [Learn more](troubleshoot/extension-based-hybrid-runbook-worker.md#scenario-runbooks-go-into-a-suspended-state-on-a-hybrid-runbook-worker-when-using-a-custom-account-on-a-server-with-user-account-control-uac-enabled).
81+
> - Due to a current limitation, these folder permissions are removed from the C:\ProgramData\AzureConnectedMachineAgent\Tokens folder on Azure Arc-enabled machines when the Azure Connected Machine agent is updated. The current resolution is to reapply these permissions to the folder. [Learn more](troubleshoot/extension-based-hybrid-runbook-worker.md#scenario-hybrid-runbook-worker-job-execution-on-azure-arc-enabled-windows-server-that-uses-a-custom-credential-is-unexpectedly-suspended).
8182
8283

8384

articles/azure-app-configuration/concept-config-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The rest of this document discusses both file content profiles in detail and use
1919

2020
## File content profile: default
2121

22-
The default file content profile in App Configuration tools refers to the conventional configuration file schema widely adopted by existing programming frameworks or systems. App Configuration supports JSON, Yaml, or Properties file formats.
22+
The default file content profile in App Configuration tools refers to the conventional configuration file schema widely adopted by existing programming frameworks or systems. App Configuration supports JSON, YAML, or Properties file formats.
2323

2424
The following example is a configuration file named `appsettings.json` containing one configuration setting and one feature flag.
2525

articles/azure-app-configuration/howto-import-export-data.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Import brings configuration data into an App Configuration store from an existin
2222

2323
This guide shows how to import App Configuration data:
2424

25-
- [from a configuration file in Json, Yaml or Properties](#import-data-from-a-configuration-file)
25+
- [from a configuration file in JSON, YAML or Properties](#import-data-from-a-configuration-file)
2626
- [from an App Configuration store](#import-data-from-an-app-configuration-store)
2727
- [from Azure App Service](#import-data-from-azure-app-service)
2828

@@ -44,7 +44,7 @@ From the Azure portal, follow these steps:
4444

4545
| Parameter | Description | Example |
4646
|--------------|-----------------------------------------------------------------------------------------|----------|
47-
| File type | Select the file type for import: YAML, Properties, or JSON. | *Json* |
47+
| File type | Select the file type for import: YAML, Properties, or JSON. | *JSON* |
4848

4949
1. Click the **Browse** button, and select the file to import.
5050

@@ -53,7 +53,7 @@ From the Azure portal, follow these steps:
5353

5454
| Parameter | Description | Example |
5555
|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------|
56-
| File content profile | Select a content profile: Default or KVSet. The *Default* file content profile refers to the conventional configuration file schema widely adopted by existing programming frameworks or systems, supports JSON, Yaml, or Properties file formats. The *KVSet* file content profile refers to a file schema that contains all properties of an App Configuration key-value, including key, value, label, content type, and tags. | *Default* |
56+
| File content profile | Select a content profile: Default or KVSet. The *Default* file content profile refers to the conventional configuration file schema widely adopted by existing programming frameworks or systems, supports JSON, YAML, or Properties file formats. The *KVSet* file content profile refers to a file schema that contains all properties of an App Configuration key-value, including key, value, label, content type, and tags. | *Default* |
5757
| Import mode | The import mode is used to determine whether to ignore identical key-values. With the *Ignore match* option, any key-values in the store that are the same as those in the configuration file are ignored. With the *All* option, all key-values in the configuration file are updated. | *Ignore match* |
5858
| Exclude feature flag | If checked, feature flags will not be imported. | *Unchecked* |
5959
| Strict | If the box is checked, any key-values in the store with the specified prefix and label that are not included in the configuration file are deleted when the File content profile is set to Default. When the File content profile is set to KVSet, any key-values in the store that are not included in the configuration file are deleted. If the box is unchecked, no key-values in the store will be deleted. | *Unchecked* |
@@ -85,7 +85,7 @@ From the Azure CLI, follow the steps below. If you don't have the Azure CLI inst
8585

8686
| Parameter | Description | Example |
8787
|------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|
88-
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to Json/Yaml. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, ``. | `;` |
88+
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to JSON/YAML. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, ``. | `;` |
8989
| `--prefix` | Optional. A key prefix is the beginning part of a key. Prefixes can be used to manage groups of key-values in a configuration store. This prefix will be appended to the front of the "key" property of each imported key-value. | `TestApp:` |
9090
| `--label` | Optional. Enter a label that will be assigned to your imported key-values. | `prod` |
9191
| `--content-type` | Optional. Enter `appconfig/kvset` or `application/json` to state that the imported content consists of a Key Vault reference or a JSON file. | `application/json` |
@@ -265,7 +265,7 @@ Export writes configuration data stored in App Configuration to another destinat
265265
266266
This guide shows how to export App Configuration data:
267267
268-
- [to a configuration file in Json, Yaml or Properties](#export-data-to-a-configuration-file)
268+
- [to a configuration file in JSON, YAML or Properties](#export-data-to-a-configuration-file)
269269
- [to an App Configuration store](#export-data-to-an-app-configuration-store)
270270
- [to an Azure App Service resource](#export-data-to-azure-app-service)
271271
@@ -289,7 +289,7 @@ From the [Azure portal](https://portal.azure.com), follow these steps:
289289
| Parameter | Description | Example |
290290
|--------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------|
291291
| File type | Select the file type for export: YAML, Properties, or JSON. | *JSON* |
292-
| File content profile | Select a content profile: Default or KVSet. The *Default* file content profile refers to the conventional configuration file schema widely adopted by existing programming frameworks or systems, supports JSON, Yaml, or Properties file formats. The *KVSet* file content profile refers to a file schema that contains all properties of an App Configuration key-value, including key, value, label, content type, and tags. | *Default* |
292+
| File content profile | Select a content profile: Default or KVSet. The *Default* file content profile refers to the conventional configuration file schema widely adopted by existing programming frameworks or systems, supports JSON, YAML, or Properties file formats. The *KVSet* file content profile refers to a file schema that contains all properties of an App Configuration key-value, including key, value, label, content type, and tags. | *Default* |
293293
| Selection mode | Select whether to export from regular key-values, which is the default option, or from a snapshot. | *Default* |
294294
| Key filter | Used to filter key-values based on the key name for export. If no keys are specified, all keys are eligible. | Starts with *TestApp:* |
295295
| At a specific time | Optional. Fill out this field to export key-values from a specific point in time in the selected configuration store. If left empty, it defaults to the current point in time of the key-values. | *07/28/2022 12:00:00 AM* |
@@ -323,7 +323,7 @@ From the Azure CLI, follow the steps below. If you don't have the Azure CLI inst
323323
324324
| Parameter | Description | Example |
325325
|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------|
326-
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to Json/Yaml. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, `—`. | `;` |
326+
| `--separator` | Optional. The separator is the delimiter for flattening the key-values to JSON/YAML. It's required for exporting hierarchical structure and will be ignored for property files and feature flags. Select one of the following options: `.`, `,`, `:`, `;`, `/`, `-`, `_`, `—`. | `;` |
327327
| `--prefix` | Optional. Prefix to be trimmed from each key-value's "key" property. A key prefix is the beginning part of a key. Prefixes can be used to manage groups of key-values in a configuration store. Prefix will be ignored for feature flags. | `TestApp:` |
328328
329329
Example: export all key-values and feature flags with label "prod" to a JSON file.

articles/azure-resource-manager/troubleshooting/error-storage-account-name.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,15 @@ Code=StorageAccountAlreadyTaken
5353
Message=The storage account named storageckrexph7isnoc is already taken.
5454
```
5555

56-
## Cause
56+
There are two main causes for this error.
5757

58-
Common reasons for an error are because the storage account name uses invalid characters or is a duplicate name. Storage account names must meet the following criteria:
58+
## Cause 1
5959

60-
- Length between 3 and 24 characters with only lowercase letters and numbers.
61-
- Must be globally unique across Azure. Storage account names can't be duplicated in Azure.
62-
63-
## Solution
60+
The storage account name uses invalid characters or is a duplicate name. Storage account names must meet the following criteria:
61+
- Length between 3 and 24 characters with only lowercase letters and numbers.
62+
- Must be globally unique across Azure. Storage account names can't be duplicated in Azure.
63+
64+
## Solution 1
6465

6566
You can create a unique name by concatenating a prefix or suffix with a value from the `uniqueString` function.
6667

@@ -129,4 +130,13 @@ name: '${storageNamePrefix}${uniqueString(resourceGroup().id)}'
129130
"name": "[concat(parameters('storageNamePrefix'), uniquestring(resourceGroup().id))]"
130131
```
131132

133+
## Cause 2
134+
135+
The storage account was recently deleted.
136+
- If a request to create the storage account comes from a different subscription and tenant than where it was previously located, it will be denied for security purposes as described here, [Prevent dangling DNS entries and avoid subdomain takeover](https://docs.microsoft.com/azure/security/fundamentals/subdomain-takeover).
137+
138+
## Solution 2
139+
140+
[Create a Support Request](https://learn.microsoft.com/azure/azure-portal/supportability/how-to-create-azure-support-request#create-a-support-request****) and choose **Create new storage account** for the problem type, and **Failure(s) during new account creation** for the Problem subtype. Please make sure to include the name of the storage account and the approximate time when account creation failed.
141+
132142
---

articles/dev-box/how-to-configure-intune-conditional-access-policies.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ You want to allow developer access to the developer portal only. Developers shou
120120

121121
### Create a new policy
122122

123+
> [!Note]
124+
> The application **Microsoft Developer Portal** was renamed from **Fidalgo Dev Portal Public**, so it is possible for certain tenants to still see the previous name. Even though they have a different name, they still have the same application ID, and thus it is the right app. If you want to try fixing this, you can delete and re-add the tenant's service principal for the app.
125+
123126
Follow these steps:
124127

125128
1. Sign in to the [Microsoft Entra admin center](https://entra.microsoft.com/) as at least a [Conditional Access Administrator](/entra/identity/role-based-access-control/permissions-reference#conditional-access-administrator).

articles/expressroute/expressroute-howto-ipsec-transport-private-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This diagram shows the IPsec tunnels in transit in ExpressRoute private peering.
3737
### Working with IPsec policy
3838

3939
In Windows, encryption is associated with IPsec policy. IPsec policy determines which IP traffic is secured and the security mechanism applied to the IP packets.
40-
**IPSec policies** are composed of the following items: **Filter Lists**, **Filter Actions**, and **Security Rules**.
40+
**IPsec policies** are composed of the following items: **Filter Lists**, **Filter Actions**, and **Security Rules**.
4141

4242
When configuring IPsec policy, it's important to understand the following IPsec policy terminology:
4343

articles/frontdoor/standard-premium/how-to-logs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Access logs, health probe logs, and Web Application Firewall (WAF) logs aren't e
4141
* Storage accounts are best used for scenarios when logs are stored for a longer duration and are reviewed when needed.
4242
* Select the *Subscription* and the *Storage Account*. and set **Retention (days)**.
4343
* **Stream to an event hub**
44-
* Event hubs are a great option for integrating with other security information and event management (SIEM) tools or external data stores, such as Splunk, DataDog, or Sumo.
44+
* Event hubs are a great option for integrating with other security information and event management (SIEM) tools or external data stores, such as Splunk, Datadog, or Sumo.
4545
* Select the *Subscription, Event hub namespace, Event hub name (optional)*, and *Event hub policy name*.
4646

4747
> [!TIP]

articles/managed-grafana/how-to-data-source-plugins-managed-identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Within the Standard service tier, users who have subscribed to the Grafana Enter
5555
* [AppDynamics](https://grafana.com/grafana/plugins/dlopes7-appdynamics-datasource)
5656
* [Azure DevOps](https://grafana.com/grafana/plugins/grafana-azuredevops-datasource)
5757
* [Databricks](https://grafana.com/grafana/plugins/grafana-databricks-datasource)
58-
* [DataDog](https://grafana.com/grafana/plugins/grafana-datadog-datasource)
58+
* [Datadog](https://grafana.com/grafana/plugins/grafana-datadog-datasource)
5959
* [Dynatrace](https://grafana.com/grafana/plugins/grafana-dynatrace-datasource)
6060
* [GitLab](https://grafana.com/grafana/plugins/grafana-gitlab-datasource)
6161
* [Honeycomb](https://grafana.com/grafana/plugins/grafana-honeycomb-datasource)

articles/synapse-analytics/synapse-link/how-to-connect-synapse-link-cosmos-db.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ From the Data Object Explorer, you can directly connect to an Azure Cosmos DB da
3838

3939
1. Select the **+** icon near **Data**.
4040
1. Select **Connect to external data**.
41-
1. Select the API that you want to connect to, for example, **SQL API** or **API for MongoDB**.
41+
1. Select the API that you want to connect to, for example, **CosmosDB for NoSQL** or **CosmosDB API for MongoDB**.
4242
1. Select **Continue**.
4343
1. Use a friendly name to name the linked service. The name will appear in the Data Object Explorer and is used by Azure Synapse runtimes to connect to the database and containers.
4444
1. Select the **Azure Cosmos DB account name** and the **database name**.

0 commit comments

Comments
 (0)