-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
843 tier 3 add on create UI definition with blue button deployments (#…
…951) * initial checkin of Tier 3 UI * tier 3 updates to ui and powershell script * update tier3 readme * update readme
- Loading branch information
Mike Dzikowski
authored
Mar 29, 2024
1 parent
38fea16
commit ad3eae7
Showing
4 changed files
with
529 additions
and
112 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[CmdletBinding(SupportsShouldProcess)] | ||
param ( | ||
[string]$TemplateSpecName, | ||
|
||
[Parameter(Mandatory)] | ||
[string]$Location, | ||
|
||
[Parameter(Mandatory)] | ||
[string]$ResourceGroupName | ||
) | ||
|
||
New-AzTemplateSpec ` | ||
-Name $TemplateSpecName ` | ||
-ResourceGroupName $ResourceGroupName ` | ||
-Version '1.0' ` | ||
-Location $Location ` | ||
-DisplayName "Mission Landing Zone - Tier 3 Workload Environment" ` | ||
-TemplateFile '.\solution.json' ` | ||
-UIFormDefinitionFile '.\uiDefinition.json' ` | ||
-Force |
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
Oops, something went wrong.