Skip to content

Commit a89ac95

Browse files
authored
Merge pull request #107554 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents c88cc6b + a1a81fd commit a89ac95

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

articles/azure-cache-for-redis/cache-dotnet-how-to-use-azure-redis-cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Add the following code for the `Main` procedure of the `Program` class for your
123123
{
124124
// Connection refers to a property that returns a ConnectionMultiplexer
125125
// as shown in the previous example.
126-
IDatabase cache = lazyConnection.Value.GetDatabase();
126+
IDatabase cache = Connection.GetDatabase();
127127

128128
// Perform cache operations using the cache object...
129129

articles/data-factory/continuous-integration-deployment.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
title: Continuous integration and delivery in Azure Data Factory
33
description: Learn how to use continuous integration and delivery to move Data Factory pipelines from one environment (development, test, production) to another.
44
services: data-factory
@@ -55,7 +55,7 @@ Below is a sample overview of the CI/CD lifecycle in an Azure data factory that'
5555

5656
![Build your own template](media/continuous-integration-deployment/custom-deployment-build-your-own-template.png)
5757

58-
1. Select **Load file**, and then select the generated Resource Manager template.
58+
1. Select **Load file**, and then select the generated Resource Manager template. This is the **arm_template.json** file located in the .zip file exported in step 1.
5959

6060
![Edit template](media/continuous-integration-deployment/custom-deployment-edit-template.png)
6161

@@ -166,17 +166,17 @@ There are two ways to handle secrets:
166166

167167
The parameters file needs to be in the publish branch as well.
168168

169-
- Add an [Azure Key Vault task](https://docs.microsoft.com/azure/devops/pipelines/tasks/deploy/azure-key-vault) before the Azure Resource Manager Deployment task described in the previous section:
169+
1. Add an [Azure Key Vault task](https://docs.microsoft.com/azure/devops/pipelines/tasks/deploy/azure-key-vault) before the Azure Resource Manager Deployment task described in the previous section:
170170

171171
1. On the **Tasks** tab, create a new task. Search for **Azure Key Vault** and add it.
172172

173173
1. In the Key Vault task, select the subscription in which you created the key vault. Provide credentials if necessary, and then select the key vault.
174174

175175
![Add a Key Vault task](media/continuous-integration-deployment/continuous-integration-image8.png)
176176

177-
#### Grant permissions to the Azure Pipelines agent
177+
#### Grant permissions to the Azure Pipelines agent
178178

179-
The Azure Key Vault task might fail with an Access Denied error if the correct permissions aren't set. Download the logs for the release, and locate the .ps1 file that contains the command to give permissions to the Azure Pipelines agent. You can run the command directly. Or you can copy the principal ID from the file and add the access policy manually in the Azure portal. `Get` and `List` are the minimum permissions required.
179+
The Azure Key Vault task might fail with an Access Denied error if the correct permissions aren't set. Download the logs for the release, and locate the .ps1 file that contains the command to give permissions to the Azure Pipelines agent. You can run the command directly. Or you can copy the principal ID from the file and add the access policy manually in the Azure portal. `Get` and `List` are the minimum permissions required.
180180

181181
### Update active triggers
182182

@@ -466,7 +466,10 @@ If you're in GIT mode, you can override the default properties in your Resource
466466
* You use automated CI/CD and you want to change some properties during Resource Manager deployment, but the properties aren't parameterized by default.
467467
* Your factory is so large that the default Resource Manager template is invalid because it has more than the maximum allowed parameters (256).
468468

469-
Under these conditions, to override the default parameterization template, create a file named arm-template-parameters-definition.json in the folder specified as the root folder for the data factory git integration. You must use that exact file name. Data Factory reads this file from whichever branch you're currently on in the Azure Data Factory portal, not just from the collaboration branch. You can create or edit the file from a private branch, where you can test your changes by selecting **Export ARM Template** in the UI. You can then merge the file into the collaboration branch. If no file is found, the default template is used.
469+
Under these conditions, to override the default parameterization template, create a file named **arm-template-parameters-definition.json** in the folder specified as the root folder for the data factory git integration. You must use that exact file name. Data Factory reads this file from whichever branch you're currently on in the Azure Data Factory portal, not just from the collaboration branch. You can create or edit the file from a private branch, where you can test your changes by selecting **Export ARM Template** in the UI. You can then merge the file into the collaboration branch. If no file is found, the default template is used.
470+
471+
> [!NOTE]
472+
> A custom parameterization template doesn't change the ARM template parameter limit of 256. It lets you choose and decrease the number of parameterized properties.
470473
471474
### Syntax of a custom parameters file
472475

@@ -652,7 +655,7 @@ Following is the current default parameterization template. If you need to add o
652655
"database": "=",
653656
"serviceEndpoint": "=",
654657
"batchUri": "=",
655-
"poolName": "=",
658+
"poolName": "=",
656659
"databaseName": "=",
657660
"systemNumber": "=",
658661
"server": "=",

articles/virtual-desktop/deploy-windows-7-virtual-machine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To set up a Windows 7 VM on Windows Virtual Desktop:
3030
4. Add the account you used while connecting to the host with RDP to the "Remote Desktop User" group. If you don't do this, you might not be able to connect to the VM after you join it to your Active Directory domain.
3131
5. Go to Windows Update on your VM.
3232
6. Install all Windows Updates in the Important category.
33-
7. Install all Windows Updates in the Optional category (excluding language packs). This installs the Remote Desktop Protocol 8.0 update ([KB2592687](https://www.microsoft.com/download/details.aspx?id=35393)) that you need to complete these instructions.
33+
7. Install all Windows Updates in the Optional category (excluding language packs). This installs the Remote Desktop Protocol 8.0 update ([KB2592687](https://www.microsoft.com/download/details.aspx?id=35387)) that you need to complete these instructions.
3434
8. Open the Local Group Policy Editor and navigate to **Computer Configuration** > **Administrative Templates** > **Windows Components** > **Remote Desktop Services** > **Remote Desktop Session Host** > **Remote Session Environment**.
3535
9. Enable the Remote Desktop Protocol 8.0 policy.
3636
10. Join this VM to your Active Directory domain.

0 commit comments

Comments
 (0)