@@ -8,7 +8,7 @@ title: Use ACR repositories with PSResourceGet
88# Use ACR repositories with PSResourceGet
99
1010Azure Container Registry (ACR) allows you to build, store, and manage container images and artifacts
11- in a private registry for all types of container deployments. Version 1.1.0-preview. 1 of the
11+ in a private registry for all types of container deployments. Version 1.1.1 of the
1212** Microsoft.PowerShell.PSResourceGet** module adds support for Azure Container registries as a
1313PSResource repository. For more information about Azure Container registries, see
1414[ Managed container registries] [ 04 ] .
@@ -22,7 +22,7 @@ To create an ACR repository, you must have:
2222
2323To use an ACR repository with PSResourceGet, you must have:
2424
25- - Version 1.1.0-preview. 1 of the ** Microsoft.PowerShell.PSResourceGet** module
25+ - Version 1.1.1 of the ** Microsoft.PowerShell.PSResourceGet** module
2626- An Azure account with the necessary permissions to access the ACR repository. ACR-based
2727 repositories are private repositories and require credentials for access. Users of the repository
2828 must have the necessary permissions to access the repository. The user needs to have ` ACRPull `
@@ -31,17 +31,16 @@ To use an ACR repository with PSResourceGet, you must have:
3131
3232## Install the PSResourceGet module
3333
34- To use an ACR repository you must install the latest preview release of the
34+ To use an ACR repository you must install the latest release of the
3535** Microsoft.PowerShell.PSResourceGet** module from the PowerShell Gallery.
3636
3737If you have a previous version of ** Microsoft.PowerShell.PSResourceGet** installed, use the
38- following command to install the preview release.
38+ following command to install the latest release.
3939
4040``` powershell
4141$installPSResourceSplat = @{
4242 Repository = 'PSGallery'
4343 Name = 'Microsoft.PowerShell.PSResourceGet'
44- Prerelease = $true
4544}
4645Install-PSResource @installPSResourceSplat
4746```
@@ -52,7 +51,6 @@ Using the following command, you can also install the module using **PowerShellG
5251$installModuleSplat = @{
5352 Repository = 'PSGallery'
5453 Name = 'Microsoft.PowerShell.PSResourceGet'
55- AllowPrerelease = $true
5654}
5755Install-Module @installModuleSplat
5856```
0 commit comments