-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ARM] Az Deployment : Add support for --template-spec #14241
Closed
Closed
Conversation
This file contains 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
detienne20
requested review from
arrownj,
fengzhou-msft,
haroldrandom,
jiasli,
Juliehzl and
mmyyrroonn
as code owners
July 6, 2020 17:11
ARM |
zhoxing-ms
reviewed
Jul 8, 2020
zhoxing-ms
reviewed
Jul 8, 2020
zhoxing-ms
reviewed
Jul 8, 2020
zhoxing-ms
reviewed
Jul 8, 2020
src/azure-cli/azure/cli/command_modules/resource/_validators.py
Outdated
Show resolved
Hide resolved
zhoxing-ms
reviewed
Jul 8, 2020
zhoxing-ms
reviewed
Jul 8, 2020
src/azure-cli/azure/cli/command_modules/resource/_validators.py
Outdated
Show resolved
Hide resolved
zhoxing-ms
reviewed
Jul 8, 2020
zhoxing-ms
reviewed
Jul 8, 2020
src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py
Show resolved
Hide resolved
zhoxing-ms
reviewed
Jul 8, 2020
src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py
Outdated
Show resolved
Hide resolved
zhoxing-ms
reviewed
Jul 8, 2020
src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py
Show resolved
Hide resolved
zhoxing-ms
reviewed
Jul 8, 2020
src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py
Show resolved
Hide resolved
zhoxing-ms
reviewed
Jul 8, 2020
src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py
Show resolved
Hide resolved
zhoxing-ms
reviewed
Jul 8, 2020
src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py
Show resolved
Hide resolved
zhoxing-ms
reviewed
Jul 8, 2020
src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py
Outdated
Show resolved
Hide resolved
…e stamp added to deployment_name, excess file removed in commit, launch,json reverted
2 tasks
Closed because #14448 would include/override the changes made here. |
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.
Description of PR (Mandatory)
This PR adds support for template-specs with Az CLI Deployment. Microsoft.Resources is updated to use the latest Python SDK. The latest Python SDK required some functions to take in different parameters and account for different return types.
Testing Guide
Create a Template-Spec for Testing -> https://ms.portal.azure.com/?feature.showassettypes=Microsoft_Azure_TemplateSpecs_ArmTemplateSpecsHub&Microsoft_Azure_TemplateSpecs=true&feature.canmodifyextensions=true#blade/Microsoft_Azure_TemplateSpecs/TemplateSpecsMenuBlade/GetStarted
Get Resource ID to Template-Spec /subscriptions/{guid}/resourceGroups/{resource-group-name}/{resource-provider-namespace}/{resource-type}/{resource-name}
Use in cmdlets
Resource Group
az deployment group validate --resource-group --subscription --template-spec
az deployment group create --resource-group <resource-group-name--subscription --template-spec
Subscription Scope
az deployment sub create --location WestUS --template-spec
az deployment sub validate --location WestUS --template-spec
Management Group
az deployment mg validate --management-group-id testmg --location WestUS --template-spec
az deployment mg create --management-group-id testmg --location WestUS --template-spec
Tenant-Scope
az deployment tenant validate --location WestUS --template-spec
az deployment tenant create --location WestUS --template-spec