45 строки
1.7 KiB
PowerShell
45 строки
1.7 KiB
PowerShell
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
|
|
# IMPORTANT: Do not invoke this file directly. Please instead run eng/common/TestResources/New-TestResources.ps1 from the repository root.
|
|
|
|
[CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = 'Medium')]
|
|
param (
|
|
[hashtable] $AdditionalParameters = @{},
|
|
|
|
# Captures any arguments from eng/New-TestResources.ps1 not declared here (no parameter errors).
|
|
[Parameter(ValueFromRemainingArguments = $true)]
|
|
$RemainingArguments
|
|
)
|
|
|
|
if (-not (Test-Path "$PSScriptRoot/sshkey.pub")) {
|
|
ssh-keygen -t rsa -b 4096 -f "$PSScriptRoot/sshkey" -N '' -C ''
|
|
}
|
|
$templateFileParameters['sshPubKey'] = Get-Content "$PSScriptRoot/sshkey.pub"
|
|
|
|
if (!$CI) {
|
|
# TODO: Remove this once auto-cloud config downloads are supported locally
|
|
Write-Host "Skipping cert setup in local testing mode"
|
|
return
|
|
}
|
|
|
|
if ($null -eq $EnvironmentVariables -or $EnvironmentVariables.Count -eq 0) {
|
|
throw "EnvironmentVariables must be set in the calling script New-TestResources.ps1"
|
|
}
|
|
|
|
$tmp = $env:TEMP ? $env:TEMP : [System.IO.Path]::GetTempPath()
|
|
$pfxPath = Join-Path $tmp "test.pfx"
|
|
$pemPath = Join-Path $tmp "test.pem"
|
|
|
|
Write-Host "Creating identity test files: $pfxPath $pemPath"
|
|
|
|
[System.Convert]::FromBase64String($EnvironmentVariables['PFX_CONTENTS']) | Set-Content -Path $pfxPath -AsByteStream
|
|
Set-Content -Path $pemPath -Value $EnvironmentVariables['PEM_CONTENTS']
|
|
|
|
# Set for pipeline
|
|
Write-Host "##vso[task.setvariable variable=IDENTITY_SP_CERT_PFX;]$pfxPath"
|
|
Write-Host "##vso[task.setvariable variable=IDENTITY_SP_CERT_PEM;]$pemPath"
|
|
# Set for local
|
|
$env:IDENTITY_SP_CERT_PFX = $pfxPath
|
|
$env:IDENTITY_SP_CERT_PEM = $pemPath
|