-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathdeploy-new.ps1
More file actions
184 lines (150 loc) · 5.49 KB
/
deploy-new.ps1
File metadata and controls
184 lines (150 loc) · 5.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
[CmdletBinding()]
param (
[Parameter()]
[ValidateScript(
{ (Get-AzLocation).Location -contains $_ },
ErrorMessage = "{0} is not a valid Azure Region."
)]
[string]
$Location = 'eastus',
<#[Parameter()]
[ValidateSet(
'AppServiceZip',
'AppServiceContainer',
'FunctionZip',
'FunctionContainer'
)]
[string]
$Architecture = 'AppServiceContainer',
#>
[Parameter()]
[ValidateScript(
{ (Test-Path $_ -PathType Leaf) -and ($_.EndsWith('.bicep')) },
ErrorMessage = "{0} is not an existing .bicep file."
)]
[string]
$IdentityTemplateFile = './identity/main.bicep',
[Parameter()]
[ValidateScript(
{ (Test-Path $_ -PathType Leaf) -and ($_.EndsWith('.bicepparam')) },
ErrorMessage = "{0} is not an existing .bicepparam file."
)]
[string]
$IdentityParameterFile = './identity/main.bicepparam',
[Parameter()]
[ValidateScript(
{ (Test-Path $_ -PathType Leaf) -and ($_.EndsWith('.bicep')) },
ErrorMessage = "{0} is not an existing .bicep file."
)]
[string]
$InfrastructureTemplateFile = './main.bicep',
[Parameter()]
[ValidateScript(
{ (Test-Path $_ -PathType Leaf) -and ($_.EndsWith('.bicepparam')) },
ErrorMessage = "{0} is not an existing .bicepparam file."
)]
[string]
$InfrastructureParameterFile = './main.bicepparam',
[Parameter()]
[ValidateNotNullOrWhiteSpace()]
[string]
$SubscriptionIdForInfrastructureDeployment = (Get-AzContext).Subscription.Id,
[Parameter()]
[ValidateNotNullOrWhiteSpace()]
[string]
$ManagementGroupIdForIdentityDeployment = (Get-AzContext).Tenant.Id,
[Parameter()]
[bool]
$IncludeIdentities = $true,
[Parameter()]
[bool]
$IncludeInfrastructure = $true
)
begin {
# Set preference variables
$ErrorActionPreference = "Stop"
$ProgressPreference = 'SilentlyContinue'
# Check for Debug Flag
$DEBUG_MODE = [bool]$PSCmdlet.MyInvocation.BoundParameters["Debug"].IsPresent
# Hide Azure PowerShell SDK Warnings
$Env:SuppressAzurePowerShellBreakingChangeWarnings = $true
# Hide Azure PowerShell SDK & Azure CLI Survey Prompts
$Env:AzSurveyMessage = $false
$Env:AZURE_CORE_SURVEY_MESSAGE = $false
} # begin
process {
# initial identity deployment
if ($IncludeIdentities) {
Write-Debug "Deploying identity resources [initial]"
$identityDeploySplat = @{
DeploymentName = -join ('ipamIdentityDeploy-{0}' -f (Get-Date -Format 'yyyyMMddTHHMMss'))[0..63]
Location = $Location
TemplateFile = $IdentityTemplateFile
TemplateParameterFile = $IdentityParameterFile
WhatIf = $false
Verbose = $DEBUG_MODE
ManagementGroupId = $ManagementGroupIdForIdentityDeployment
}
$identityDeplyment = New-AzManagementGroupDeployment @identityDeploySplat
Write-Debug "Deployed identity resources [initial]"
}
# infrastructure deployment
if ($IncludeInfrastructure) {
Write-Debug "Deploying infrastructure resources"
$infrastructureDeploySplat = @{
DeploymentName = -join ('ipamInfrastructureDeploy-{0}' -f (Get-Date -Format 'yyyyMMddTHHMMss'))[0..63]
Location = $Location
TemplateFile = $InfrastructureTemplateFile
TemplateParameterFile = $InfrastructureParameterFile
WhatIf = $false
Verbose = $DEBUG_MODE
}
# include appIds from identity deployment if it was included
if ($IncludeIdentities) {
$infrastructureDeploySplat.Add('uiAppId', $identityDeplyment.Outputs.uiAppId.Value)
$infrastructureDeploySplat.Add('engineAppId', $identityDeplyment.Outputs.engineAppId.Value)
}
Select-AzSubscription -SubscriptionId $SubscriptionIdForInfrastructureDeployment
$infrastructureDeployment = New-AzSubscriptionDeployment @infrastructureDeploySplat
Write-Debug "Deployed infrastructure resources"
}
# full identity deployment
if ($IncludeIdentities) {
Write-Debug "Deploying identity resources [full]"
$identityDeploySplat = @{
DeploymentName = -join ('ipamIdentityDeploy-{0}' -f (Get-Date -Format 'yyyyMMddTHHMMss'))[0..63]
Location = $Location
TemplateFile = $IdentityTemplateFile
TemplateParameterFile = $IdentityParameterFile
WhatIf = $false
Verbose = $DEBUG_MODE
ManagementGroupId = $ManagementGroupIdForIdentityDeployment
# pass appIds from initial deployment
uiAppId = $identityDeplyment.Outputs.uiAppId.Value
engineAppId = $identityDeplyment.Outputs.engineAppId.Value
}
# pass uiAppRedirectUris from infrastructure deployment, if it was included
if ($IncludeInfrastructure) {
$identityDeploySplat.Add('uiAppRedirectUris', @( $infrastructureDeployment.Outputs.appServiceHostName.Value ))
}
$identityDeplyment = New-AzManagementGroupDeployment @identityDeploySplat
Write-Debug "Deployed identity resources [full]"
}
# az acr build
if ($IncludeInfrastructure -and $infrastructureDeployment.Outputs.acrName.Value.Length -gt 1) {
Write-Debug "Building and pushing container image to Azure Container Registry"
}
# archive and publish .zip
if ($IncludeInfrastructure -and [bool]$infrastructureDeployment.Outputs.zipDeployNeeded.Value) {
Write-Debug "Creating ZIP Deploy archive"
Write-Debug "Uploading ZIP Deploy archive"
}
# catch any errors
trap {
Write-Debug "Inside trap block, an error occurred"
throw
# break
}
} # process
end {
} # end