Azure DevOps Powershell 脚本无法创建 SSL/TLS 安全通道

Pet*_*ofi 10 powershell ssl azure azure-devops

问题:
如果我从DevOps管道中的“Azure Powershell”任务中调用命令Get-AzureDeployment(也称为Get-AzureService),我会得到:“请求被中止:无法创建 SSL/TLS 安全通道。'

介绍:

  • 我使用 Azure DevOps 将 Azure 云服务(经典)部署到 Azure
  • “Azure Powershell”任务一直在工作,但没有改变任何东西它停止工作
  • 我还将证书(由 DevOps 使用)导入我的电脑(通过 Import-AzurePublishSettingsFile)并尝试运行相同的 powershell 脚本,并且 everytnig 工作正常,所以我希望 DevOps 中出现问题

DevOps 连接:

  • 我在 Azure DevOps 中创建了“服务连接”以连接到 Azure
  • 服务连接是“Azure Classic”类型(因为“Azure Resource Manager”不适用于“Cloud service classic”)
  • “Azure 经典服务连接”的身份验证方法是“基于证书”。
  • 我将“发布设置文件”生成的证书用于我的 azure 订阅。证书被azure放入我的订阅->管理证书(到期日期为2021年年中)
  • 我使用此服务连接将应用程序(云服务经典)部署到 Azure中没有问题(通过 DevOps 任务“Azure 云服务部署”),但只是“Azure Powershell”任务开始失败

这一切都工作了 3 个月,然后因任何原因停止工作。奇怪的是,当我在玩 DevOps 以找出问题所在时,该任务曾经成功运行,但是当我再次尝试时,我又出现了错误。

我有两个日志,从成功调用和失败调用。2506行日志是相同的,变化在这一行之后。

我可以给你发送完整的日志,但我不想在这里放这么长的日志。

成功尝试:

VERBOSE: 8:31:40 AM - Begin Operation: Get-AzureDeployment
VERBOSE: 8:31:42 AM - Completed Operation: Get-AzureDeployment
... some other info about the deployment in slot
Run Code Online (Sandbox Code Playgroud)

从失败的呼叫记录:

VERBOSE: 9:53:39 AM - Begin Operation: Get-AzureDeployment
##[debug]Caught exception from task script.
##[debug]Error record:
##[debug]Get-AzureDeployment : An error occurred while sending the request.
##[debug]At D:\a\r1\a\_Tools\Powershell\cloud-service_swap-slot.ps1:14 char:15
##[debug]+ ... eployment = Get-AzureDeployment -Slot "Staging" -ServiceName $CloudSe ...
##[debug]+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
##[debug]    + CategoryInfo          : CloseError: (:) [Get-AzureDeployment], HttpRequestException
##[debug]    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.HostedServices.GetAzureDeploymentComma    nd
##[debug] 
##[debug]Script stack trace:
##[debug]at <ScriptBlock>, D:\a\r1\a\_Tools\Powershell\cloud-service_swap-slot.ps1: line 14
##[debug]at <ScriptBlock>, <No file>: line 1
##[debug]at <ScriptBlock>, D:\a\_tasks\AzurePowerShell_72a1931b-effb-4d2e-8fd8-f8472a07cb62\3.171.2\AzurePowerShell.ps1: line 145
##[debug]at <ScriptBlock>, D:\a\_tasks\AzurePowerShell_72a1931b-effb-4d2e-8fd8-f8472a07cb62\3.171.2\AzurePowerShell.ps1: line 141
##[debug]at <ScriptBlock>, <No file>: line 1
##[debug]at <ScriptBlock>, <No file>: line 22
##[debug]at <ScriptBlock>, <No file>: line 18
##[debug]at <ScriptBlock>, <No file>: line 1
##[debug]Exception:
##[debug]System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
##[debug]   at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
##[debug]   at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)
##[debug]   --- End of inner exception stack trace ---
##[debug]   at Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
##[debug]   at Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(Task task)
##[debug]   at Microsoft.WindowsAzure.Management.Compute.DeploymentOperationsExtensions.GetBySlot(IDeploymentOperations operations, String serviceName, DeploymentSlot deploymentSlot)
##[debug]   at Microsoft.WindowsAzure.Commands.Utilities.Common.ServiceManagementBaseCmdlet.ExecuteClientActionNewSM[TResult](Object input, String operationDescription, Func`1 action, Func`3 contextFactory)
##[error]An error occurred while sending the request.
##[debug]Processed: ##vso[task.logissue type=error]An error occurred while sending the request.
##[debug]Processed: ##vso[task.complete result=Failed]
Run Code Online (Sandbox Code Playgroud)

在这两个日志中,我还可以找到将 Azure 帐户添加到 Powershell 中的内容:

##[debug]Added certificate to the certificate store.
##[command]Set-AzureSubscription -SubscriptionName PXX -SubscriptionId XXXXXX01-09f5-4703-bcc9-6ff914XXXXXX -Certificate ******** -Environment AzureCloud 
##[command]Select-AzureSubscription -SubscriptionId XXXXXX01-09f5-4703-bcc9-6ff914XXXXXX
##[debug]Leaving Initialize-Azure.
## Initializing Azure Complete 
Run Code Online (Sandbox Code Playgroud)

(我用 X 替换了一些字符串)

YAML中有Powershell任务:

steps:
- task: AzurePowerShell@3
  displayName: 'Swap slots'
  inputs:
    azureConnectionType: ConnectedServiceName
    azureClassicSubscription: 'PXX subscription'
    ScriptPath: '$(System.DefaultWorkingDirectory)/_Tools/Powershell/cloud-service_swap-slot.ps1'
    ScriptArguments: '-CloudServiceName $(CloudServiceName)'
    FailOnStandardError: true
    azurePowerShellVersion: LatestVersion
Run Code Online (Sandbox Code Playgroud)

以及用于交换从本地 pc(具有相同证书)工作但在 DevOps 中失败的插槽的 Powershell 脚本:

[CmdletBinding(PositionalBinding=$True)]
Param(
    [Parameter(Mandatory = $true)]
    [String]$CloudServiceName              # required
)

# Check if Windows Azure Powershell is avaiable 
if ((Get-Module -ListAvailable Azure) -eq $null) 
{ 
    throw "Windows Azure Powershell not found! Please install from http://www.windowsazure.com/en-us/downloads/#cmd-line-tools" 
} 
 
# VIP Swap
$Deployment = Get-AzureDeployment -Slot "Staging" -ServiceName $CloudServiceName #It's failing here
if ($Deployment -ne $null -AND $Deployment.DeploymentId  -ne $null) 
{ 
     Write-Output ("Current Status of staging in {0}" -f $CloudServiceName); 
     Write-Host ($Deployment | Select-Object -Property * -ExcludeProperty Configuration,RolesConfiguration | Format-List | Out-String);

     $MoveStatus = Move-AzureDeployment -ServiceName $CloudServiceName 
     Write-Output ("Vip swap of {0} status: {1}" -f $CloudServiceName, $MoveStatus.OperationStatus)     
}else 
{ 
     Write-Output ("There is no deployment in staging slot of {0} to swap." -f $CloudServiceName) 
} 
Run Code Online (Sandbox Code Playgroud)

有没有人和我一样的经历?问题可能出在哪里?

# 更新

我试图在脚本的开头添加此安全协议设置,但出现相同的错误。

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Run Code Online (Sandbox Code Playgroud)

小智 2

这似乎是 Microsoft 构建代理的问题,但将以下代码添加到每个 Azure Powershell 任务的开头似乎已经为我们解决了这个问题,直到他们解决这个问题。

$pcert = (Get-Variable Endpoint -ValueOnly).Auth.Parameters.certificate
$bytes = [convert]::FromBase64String($pcert) 
[IO.File]::WriteAllBytes("C:\cert.pfx",$bytes) 
$null = Import-PfxCertificate -FilePath C:\cert.pfx -CertStoreLocation cert:\CurrentUser\My
Run Code Online (Sandbox Code Playgroud)