Skip to content
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

Zta add on for esri #833

Merged
merged 40 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
5cff9e4
initial check in
Jan 16, 2024
876bed4
adding file back after deletion
Jan 16, 2024
4c2959b
initial updates
Jan 16, 2024
7aea318
updates
Jan 16, 2024
fa84363
add tier3 to zta
Jan 17, 2024
7a89266
initial check in
Jan 16, 2024
24c2a1f
adding file back after deletion
Jan 16, 2024
11dfe21
initial updates
Jan 16, 2024
4f8d98d
updates
Jan 16, 2024
8c4f5a0
add tier3 to zta
Jan 17, 2024
fde593e
Merge branch 'ztaAddOnForEsri' of https://github.com/Azure/missionlz …
Jan 17, 2024
a2a36e2
UI updates
Jan 17, 2024
465ac6e
initial check in
Jan 16, 2024
229e822
adding file back after deletion
Jan 16, 2024
c471742
initial updates
Jan 16, 2024
7ec152a
updates
Jan 16, 2024
859bd6e
add tier3 to zta
Jan 17, 2024
0a991f1
initial check in
Jan 16, 2024
698c457
adding file back after deletion
Jan 16, 2024
4fc08da
initial updates
Jan 16, 2024
4fbd55b
add tier3 to zta
Jan 17, 2024
a237eca
UI updates
Jan 17, 2024
9616825
Merge branch 'ztaAddOnForEsri' of https://github.com/Azure/missionlz …
Jan 17, 2024
c333cc1
latest updates for ZTA add-on
Jan 17, 2024
50618c5
test blue button
Jan 17, 2024
b452362
encode url
Jan 17, 2024
201b612
url
Jan 17, 2024
19e83bc
test ui scehema
Jan 17, 2024
e545fcf
button
Jan 17, 2024
ed0b120
read me updates
Jan 17, 2024
9397faa
buttons tested
Jan 17, 2024
c630ef5
removing license
Jan 17, 2024
71b8625
pipe in readme
Jan 17, 2024
5bb7120
update folder
Jan 31, 2024
f03d866
GitHub Action: Build Bicep to JSON
invalid-email-address Jan 31, 2024
61fc73d
update readme
Jan 31, 2024
f970958
Merge branch 'ztaAddOnForEsri' of https://github.com/Azure/missionlz …
Jan 31, 2024
4cbcab6
readme update
Jan 31, 2024
040947a
Merge branch 'main' into ztaAddOnForEsri
Jan 31, 2024
b494674
GitHub Action: Build Bicep to JSON
invalid-email-address Jan 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[CmdletBinding(SupportsShouldProcess)]
param (
[Parameter(Mandatory)]
[string]$TemplateSpecName,

[Parameter(Mandatory)]
[string]$Location,

[Parameter(Mandatory)]
[string]$ResourceGroupName
)

New-AzTemplateSpec `
-Name $TemplateSpecName `
-ResourceGroupName $ResourceGroupName `
-Version '1.0' `
-Location $Location `
-DisplayName "Zero Trust Image Template" `
-TemplateFile '.\solution.json' `
-UIFormDefinitionFile '.\uiDefinition.json' `
-Force
Loading