Skip to content

Commit 5a62f9e

Browse files
committed
updates
1 parent 48de8eb commit 5a62f9e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/devtest-labs/add-artifact-repository.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Select the tab for the type of repository and authentication that you want to us
3333

3434
To add an artifact repo, complete the following tasks:
3535

36-
- Assign permissions in Azure Repos for the managed identity.
37-
- Add your artifact repository.
36+
1. Assign permissions in Azure Repos for the managed identity.
37+
1. Add your artifact repository.
3838

3939
### Assign permissions in Azure Repos for the managed identity
4040

@@ -138,7 +138,7 @@ To add an artifact repo, complete the following tasks:
138138
1. Assign permissions in GitHub for the repos.
139139
1. Add your artifact repository.
140140

141-
### Assign permissions in GitHub for the repos
141+
### Install the Microsoft Dev Center app
142142

143143
1. Sign in to the [Azure portal](https://portal.azure.com).
144144

@@ -173,7 +173,7 @@ To add an artifact repo, complete the following tasks:
173173

174174
You can select multiple repositories to add to the lab. You must add each repository separately to the lab, as described in this article.
175175

176-
1. On the **Microsoft DevCenter by Microsoft would like permission to:** page, review the permissions required, and then select **Authorize Microsoft DevCenter**.
176+
1. On the **Microsoft DevCenter by Microsoft would like permission to** page, review the permissions required, and then select **Authorize Microsoft DevCenter**.
177177

178178
:::image type="content" source="media/devtest-lab-add-repo/devtestlab-authorize-microsoft-dev-center.png" alt-text="Screenshot of the Microsoft DevCenter by Microsoft would like permission to page." lightbox="media/devtest-lab-add-repo/devtestlab-authorize-microsoft-dev-center.png":::
179179

@@ -339,7 +339,7 @@ There are several ways to deploy ARM templates to create or update Azure resourc
339339
For this procedure, deploy the template by using Azure PowerShell.
340340

341341
> [!NOTE]
342-
> The cmdlets that deploy the template are context-specific, so they use the current tenant and subscription. If you need to change the context, use [Set-AzContext](/powershell/module/az.accounts/set-azcontext) before you deploy the template
342+
> The cmdlets that deploy the template are context-specific, so they use the current tenant and subscription. If you need to change the context, use [Set-AzContext](/powershell/module/az.accounts/set-azcontext) before you deploy the template.
343343
344344
1. Create a resource group by using [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup). If the resource group you want to use already exists, skip this step.
345345

@@ -473,10 +473,10 @@ Write-Verbose "Az ResourceName: $resourceName"
473473
Write-Verbose "Creating artifact repository '$ArtifactRepositoryDisplayName'..."
474474
$result = New-AzResource -Location $LabResource.Location -ResourceGroupName $LabResource.ResourceGroupName -properties $propertiesObject -ResourceType $resourcetype -ResourceName $resourceName -ApiVersion 2016-05-15 -Force
475475
476-
# Alternate implementation:
476+
# Alternative implementation:
477477
# Use resourceId rather than resourcetype and resourcename parameters.
478478
# Using resourceId lets you specify the $SubscriptionId rather than using the
479-
# subscription id of Get-AzContext.
479+
# subscription ID of Get-AzContext.
480480
# $resourceId = "/subscriptions/$SubscriptionId/resourceGroups/$($LabResource.ResourceGroupName)/providers/Microsoft.DevTestLab/labs/$LabName/artifactSources/$ArtifactRepositoryName"
481481
# $result = New-AzResource -properties $propertiesObject -ResourceId $resourceId -ApiVersion 2016-05-15 -Force
482482

0 commit comments

Comments
 (0)