Add missing Azure resource provider registrations for LocalBox - #984
Merged
Kiana Harris (kianaharris4) merged 3 commits intoSep 2, 2026
Merged
Conversation
* Added Microsoft.KeyVault in the list of required azure resource provider (Azure#792) During deployment identified below service provider needs to be registered too hence added to both PowerShell and cli commands Register-AzResourceProvider -ProviderNamespace "Microsoft.KeyVault" az provider register --namespace Microsoft.Keyvault * Fix minor typos in README.md (Azure#789) * Update password requirements for Windows account (Azure#795) Password length needs to be 14 characters long, in stead of 12 Co-authored-by: Lior Kamrat <46730876+likamrat@users.noreply.github.com> * Kianaharris updates (Azure#796) * Documentation corrections and improvements (Azure#793) * Added Microsoft.KeyVault in the list of required azure resource provider (Azure#792) During deployment identified below service provider needs to be registered too hence added to both PowerShell and cli commands Register-AzResourceProvider -ProviderNamespace "Microsoft.KeyVault" az provider register --namespace Microsoft.Keyvault * Fix minor typos in README.md (Azure#789) * Update password requirements for Windows account (Azure#795) Password length needs to be 14 characters long, in stead of 12 Co-authored-by: Lior Kamrat <46730876+likamrat@users.noreply.github.com> --------- Co-authored-by: Sammy1712 <surbhisinghlko1712@gmail.com> Co-authored-by: Brian Veldman <147204186+brianveldman@users.noreply.github.com> Co-authored-by: Daniel Etten <17641259+danieletten@users.noreply.github.com> Co-authored-by: Lior Kamrat <46730876+likamrat@users.noreply.github.com> * August 2025 release notes --------- Co-authored-by: Lior Kamrat <46730876+likamrat@users.noreply.github.com> Co-authored-by: Jan Egil Ring <janegilring@users.noreply.github.com> Co-authored-by: Sammy1712 <surbhisinghlko1712@gmail.com> Co-authored-by: Brian Veldman <147204186+brianveldman@users.noreply.github.com> Co-authored-by: Daniel Etten <17641259+danieletten@users.noreply.github.com> * Kianaharris updates (Azure#809) * Documentation corrections and improvements (Azure#793) * Added Microsoft.KeyVault in the list of required azure resource provider (Azure#792) During deployment identified below service provider needs to be registered too hence added to both PowerShell and cli commands Register-AzResourceProvider -ProviderNamespace "Microsoft.KeyVault" az provider register --namespace Microsoft.Keyvault * Fix minor typos in README.md (Azure#789) * Update password requirements for Windows account (Azure#795) Password length needs to be 14 characters long, in stead of 12 Co-authored-by: Lior Kamrat <46730876+likamrat@users.noreply.github.com> --------- Co-authored-by: Sammy1712 <surbhisinghlko1712@gmail.com> Co-authored-by: Brian Veldman <147204186+brianveldman@users.noreply.github.com> Co-authored-by: Daniel Etten <17641259+danieletten@users.noreply.github.com> Co-authored-by: Lior Kamrat <46730876+likamrat@users.noreply.github.com> * August 2025 release notes * sept 2025 release updates --------- Co-authored-by: Lior Kamrat <46730876+likamrat@users.noreply.github.com> Co-authored-by: Jan Egil Ring <janegilring@users.noreply.github.com> Co-authored-by: Sammy1712 <surbhisinghlko1712@gmail.com> Co-authored-by: Brian Veldman <147204186+brianveldman@users.noreply.github.com> Co-authored-by: Daniel Etten <17641259+danieletten@users.noreply.github.com> * Oct/Nov release notes (Azure#854) --------- Co-authored-by: Sammy1712 <surbhisinghlko1712@gmail.com> Co-authored-by: Brian Veldman <147204186+brianveldman@users.noreply.github.com> Co-authored-by: Daniel Etten <17641259+danieletten@users.noreply.github.com> Co-authored-by: Lior Kamrat <46730876+likamrat@users.noreply.github.com> Co-authored-by: Jan Egil Ring <janegilring@users.noreply.github.com>
…work Signed-off-by: Jan Egil Ring <janegilring@microsoft.com>
… deployment Signed-off-by: Jan Egil Ring <janegilring@microsoft.com>
|
👋 Hello Jan Egil Ring (@janegilring), This PR has been allowed to target the main branch directly because you are an exempt maintainer 👑 Thank you for your contribution! |
Kiana Harris (kianaharris4)
approved these changes
Sep 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the deployment documentation for LocalBox on Azure to ensure all necessary Azure resource providers are registered before deployment. The main changes add missing provider registration commands for both PowerShell and Azure CLI.
Documentation improvements:
Register-AzResourceProvider -ProviderNamespace "Microsoft.Compute"andRegister-AzResourceProvider -ProviderNamespace "Microsoft.Network"to the PowerShell setup instructions to ensure all required providers are registered. [1] [2]az provider register --namespace Microsoft.Computeandaz provider register --namespace Microsoft.Networkto the Azure CLI setup instructions for completeness. [1] [2]