functions/public/New-SMBAzureDeployment.ps1
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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
function New-SMBAzureDeployment { [cmdletbinding(DefaultParameterSetName="AzureTenantDomain")] param( [parameter()] [switch] $AsJob, [parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [string] $CustomerName, [parameter(Mandatory=$true)] [ValidateSet('small','medium','large')] [string] $CustomerSize = 'small', [parameter()] [ValidateSet('none','small','medium')] [string] $AdditionalVMSize = 'none', [parameter()] [ValidateSet('none','small')] [string] $AdditionalSQLInstanceSize = 'none', [ValidateSet('none','standard')] [string] $Backup = 'none', [ValidateSet('none','basic')] [string] $VPN = 'none', [parameter()] [string] $SysAdminPassword = $(New-SWRandomPassword), [parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [pscredential] $Credential = (Get-Credential -Message "Please provide your Partner Credentials"), [parameter(ParameterSetName="AzureTenantId",Mandatory=$true)] [ValidateNotNullOrEmpty()] [string] $TenantId, [parameter(ParameterSetName="AzureTenantDomain",Mandatory=$true)] [ValidateNotNullOrEmpty()] [string] $TenantDomain, [parameter()] [ValidateNotNullOrEmpty()] [string] $SubscriptionId, [parameter()] [ValidateNotNullOrEmpty()] [string] $SubscriptionName, [Parameter(DontShow=$true)] [ValidateNotNullOrEmpty()] [string] $ResourceGroupPrefix = "smb_rg_", [Parameter(DontShow=$true)] [string] $Log = $null ) begin{ if([string]::IsNullOrEmpty($Log) -eq $false){ if(test-path $Log){} else { $Log = Start-Log } } else { $Log = Start-Log } $PSDefaultParameterValues = @{"Write-Log:Log"=$Log} $CustomerNamePrefix = [Regex]::Replace($CustomerName,'[^a-zA-Z0-9]', '') $ResourceGroupName = "$ResourceGroupPrefix$CustomerNamePrefix" $SecurePassword = $SysAdminPassword|ConvertTo-SecureString -AsPlainText -Force write-log -Message "Using $CustomerNamePrefix as resource naming prefix" Write-Log -Message "Using $ResourceGroupName as target resource group" $ActiveSubscription = "" if($Credential){ try { Connect-MsolService -Credential $Credential if($TenantId){ $null = Add-AzureRMAccount -Credential $Credential -TenantId $TenantId } elseif ($TenantDomain){ if(($TenantId = ((Get-MsolPartnerContract -all).where{$_.DefaultDomainName -eq $TenantDomain}).TenantId) -eq $null){ Write-Log -Type Error -Message "Tenant Domain not found" } elseif($TenantId.GetType().IsArray) { Write-Log -Type Error -Message "There are multiple tenants with the specified domain name. Please use Tenant ID to specify an exact target tenant." } else { # everything OK } $null = Add-AzureRMAccount -Credential $Credential -TenantId $TenantId } else { $null = Add-AzureRMAccount -Credential $Credential } if($SubscriptionId){ $null = Select-AzureRmSubscription -SubscriptionId $SubscriptionId } elseif($SubscriptionName){ $null = Select-AzureRmSubscription -SubscriptionName $SubscriptionName } else { # use default subscription } } catch { write-log -type error -message "Error during Azure connection: $_" } } try{ $null = Get-AzureRmContext } catch { Write-Error "No active Azure subscription is present in the session. Please use Login-AzureRMAccount and Select-AzureRMSubscription to set the target subscription, or specify Tenant/Credential information" return $null } if((Get-AzureRmResourceGroup -Name $ResourceGroupName -ErrorAction Ignore) -ne $null){ Write-Log -Type Error -Message "Resource group already exists, please choose another customer name" return } if((Test-AzureRmDnsAvailability -DomainNameLabel $CustomerNamePrefix.ToLower() -Location "westeurope") -eq $false){ write-log -type error -Message "Domain Name already taken, please choose another customer name" return } if($CustomerNamePrefix -like "*microsoft*"){ write-log -type error -message "'Microsoft' can not be a part of the customer name, please choose another customer name" return } $AzureParameters = @{ customername = $CustomerNamePrefix customersize = $CustomerSize sql = $AdditionalSQLInstanceSize vm = $AdditionalVMSize backupEnabled = $Backup vpnGateway = $VPN scheduleid01=$([guid]::NewGuid().ToString()) scheduleid02=$([guid]::NewGuid().ToString()) scheduleStartDate = (get-date).AddDays(1).ToString("yyyy/MM/dd") } $AzureParameters.Add('adminPassword',$SecurePassword) } process{ Write-Log "Creating Resourcegroup '$($ResourceGroupName)'" try { $null = New-AzureRmResourceGroup -Name $ResourceGroupName -Location "westeurope" # currently hard-coded location, will Changed } catch { Write-log -Type Error -Message "Error while deploying resource group: $_" return $null } write-log "Deploying solution to resource group" try{ $SyncHash = [hashtable]::Synchronized(@{}) $SyncHash.ResourceGroupName = $ResourceGroupName $SyncHash.DeploymentParameters = $AzureParameters $SyncHash.Log = $Log $SyncHash.LogFunction = "$Root\functions\private\write-log.ps1" $SyncHash.PopupFunction = "$Root\functions\private\invoke-message.ps1" $SyncHash.ClassFunction = "$Root\functions\private\register-classes.ps1" $SyncHash.OperationFunction = "$Root\functions\private\invoke-operation.ps1" $CredentialGuid = [guid]::NewGuid().Guid $null = Save-AzureRmProfile -path "$env:TEMP\SBSDeployment-$CredentialGuid.json" -Force $SyncHash.DeploymentStart = get-date $SyncHash.DeploymentJob = new-object psobject -Property @{ Type='Azure' Duration="00:00:00" Status = @{ Deployment = @() Configuration = @{ Domain="$CustomerNamePrefix.local" Login='sysadmin' Password = $SysAdminPassword ResourceGroup = $ResourceGroupName Connection = "https://$($CustomerNamePrefix.ToLower()).westeurope.cloudapp.azure.com/rdweb" } } Completed = $false Error = $null Log = $Log } $null = invoke-operation -synchash $SyncHash -code { try{ $null = Select-AzureRmProfile -Path "$env:TEMP\SBSDeployment-$CredentialGuid.json" $null = New-AzureRmResourceGroupDeployment -TemplateUri 'https://inovativbe.blob.core.windows.net/sbstemplate/azuredeploy.json' ` -TemplateParameterObject $SyncHash.DeploymentParameters -ResourceGroupName $SyncHash.ResourceGroupName if($? -eq $false){ throw $Error[1] } } catch { $SyncHash.DeploymentJob.Error = $_.Exception } } $null = Invoke-Operation -synchash $SyncHash -code { try { $null = select-azurermprofile -path "$env:TEMP\SBSDeployment-$CredentialGuid.json" $DeploymentStatus = Get-AzureRmResourceGroupDeployment -ResourceGroupName $SyncHash.ResourceGroupName while(((($DeploymentStatus.where{$_.ProvisioningState -eq 'Running'}).count -gt 0) -or ((new-timespan -start $SyncHash.DeploymentStart -end (get-date)).TotalMinutes -lt 1)) -and ($SyncHash.DeploymentJob.Error -eq $null)){ $Start = $SyncHash.DeploymentStart $End = Get-Date $Duration = New-TimeSpan -Start $Start -End $End $SyncHash.DeploymentJob.Duration = $("{0:HH:mm:ss}" -f ([datetime]$Duration.Ticks)) $SyncHash.DeploymentJob.Status.Deployment = @() foreach($Item in $DeploymentStatus){ $Status = new-object -TypeName psobject -Property @{ Name = $Item.DeploymentName Status = $Item.ProvisioningState } $SyncHash.DeploymentJob.Status.Deployment += $Status } start-sleep -Seconds 10 $DeploymentStatus = Get-AzureRmResourceGroupDeployment -ResourceGroupName $SyncHash.ResourceGroupName } foreach($Item in $DeploymentStatus){ $Status = new-object -TypeName psobject -Property @{ Name = $Item.DeploymentName Status = $Item.ProvisioningState } $SyncHash.DeploymentJob.Status.Deployment += $Status } } catch { $SyncHash.DeploymentJob.Error = $_ } finally{ $Duration = New-TimeSpan -Start $Start -End (get-date) $SyncHash.DeploymentJob.Duration = $("{0:HH:mm:ss}" -f ([datetime]$Duration.Ticks)) $SyncHash.DeploymentJob.Completed = $true } } if($AsJob){ # return [ref]$SyncHash.DeploymentJob } else { while($SyncHash.DeploymentJob.Completed -ne $true){ Write-Progress -id 100 -Activity "Deploying Azure Solution ($($SyncHash.DeploymentJob.Duration))" -PercentComplete -1 $i = 0 foreach($Item in $SyncHash.DeploymentJob.Status.Deployment){ Write-Progress -Activity $Item.Name -Status $Item.Status -ParentId 100 -PercentComplete -1 -id $i $i++ } start-sleep -Seconds 10 } } remove-item -Path "$env:TEMP\SBSDeployment-$CredentialGuid.json" -Force -ErrorAction Ignore if($SyncHash.DeploymentJob.Error -ne $null){ throw $SyncHash.DeploymentJob.Error } } catch { # Remove-AzureRmResourceGroup -Name $ResourceGroupName -Force write-log -Type Error "Error while deploying solution: $($SyncHash.DeploymentJob.Error)." } finally{ ([ref]$SyncHash.DeploymentJob).value } } end{} } |