AzureCLI@2 - Azure CLI v2 任务

在 Linux 代理上运行时,在 PowerShell Core/shell 脚本中针对 Azure 订阅运行 Azure CLI 命令。 或者,在 Windows 代理上运行时,在 PowerShell/PowerShell Core/批处理脚本中针对 Azure 订阅运行 Azure CLI 命令。

在 Linux 代理上运行时,在 PowerShell Core/shell 脚本中针对 Azure 订阅运行 Azure CLI 命令。 或者,在 Windows 代理上运行时,在 PowerShell/Powershell Core/batch 脚本中针对 Azure 订阅运行 Azure CLI 命令。

语法

# Azure CLI v2
# Run Azure CLI commands against an Azure subscription in a PowerShell Core/Shell script when running on Linux agent or PowerShell/PowerShell Core/Batch script when running on Windows agent.
- task: AzureCLI@2
  inputs:
    azureSubscription: # string. Alias: connectedServiceNameARM. Required. Azure Resource Manager connection. 
    scriptType: # 'ps' | 'pscore' | 'batch' | 'bash'. Required. Script Type. 
    scriptLocation: 'scriptPath' # 'inlineScript' | 'scriptPath'. Required. Script Location. Default: scriptPath.
    scriptPath: # string. Required when scriptLocation = scriptPath. Script Path. 
    #inlineScript: # string. Required when scriptLocation = inlineScript. Inline Script. 
    #arguments: # string. Alias: scriptArguments. Script Arguments. 
    #powerShellErrorActionPreference: 'stop' # 'stop' | 'continue' | 'silentlyContinue'. Optional. Use when scriptType = ps || scriptType = pscore. ErrorActionPreference. Default: stop.
  # Advanced
    #addSpnToEnvironment: false # boolean. Access service principal details in script. Default: false.
    #useGlobalConfig: false # boolean. Use global Azure CLI configuration. Default: false.
    #workingDirectory: # string. Alias: cwd. Working Directory. 
    #failOnStandardError: false # boolean. Fail on Standard Error. Default: false.
    #powerShellIgnoreLASTEXITCODE: false # boolean. Optional. Use when scriptType = ps || scriptType = pscore. Ignore $LASTEXITCODE. Default: false.
    #visibleAzLogin: true # boolean. az login output visibility. Default: true.
# Azure CLI v2
# Run Azure CLI commands against an Azure subscription in a PowerShell Core/Shell script when running on Linux agent or PowerShell/PowerShell Core/Batch script when running on Windows agent.
- task: AzureCLI@2
  inputs:
    azureSubscription: # string. Alias: connectedServiceNameARM. Required. Azure Resource Manager connection. 
    scriptType: # 'ps' | 'pscore' | 'batch' | 'bash'. Required. Script Type. 
    scriptLocation: 'scriptPath' # 'inlineScript' | 'scriptPath'. Required. Script Location. Default: scriptPath.
    scriptPath: # string. Required when scriptLocation = scriptPath. Script Path. 
    #inlineScript: # string. Required when scriptLocation = inlineScript. Inline Script. 
    #arguments: # string. Alias: scriptArguments. Script Arguments. 
    #powerShellErrorActionPreference: 'stop' # 'stop' | 'continue' | 'silentlyContinue'. Optional. Use when scriptType = ps || scriptType = pscore. ErrorActionPreference. Default: stop.
  # Advanced
    #addSpnToEnvironment: false # boolean. Access service principal details in script. Default: false.
    #useGlobalConfig: false # boolean. Use global Azure CLI configuration. Default: false.
    #workingDirectory: # string. Alias: cwd. Working Directory. 
    #failOnStandardError: false # boolean. Fail on Standard Error. Default: false.
    #powerShellIgnoreLASTEXITCODE: false # boolean. Optional. Use when scriptType = ps || scriptType = pscore. Ignore $LASTEXITCODE. Default: false.
# Azure CLI v2
# Run Azure CLI commands against an Azure subscription in a PowerShell Core/Shell script when running on Linux agent or PowerShell/Powershell Core/Batch script when running on Windows agent.
- task: AzureCLI@2
  inputs:
    azureSubscription: # string. Alias: connectedServiceNameARM. Required. Azure Resource Manager connection. 
    scriptType: # 'ps' | 'pscore' | 'batch' | 'bash'. Required. Script Type. 
    scriptLocation: 'scriptPath' # 'inlineScript' | 'scriptPath'. Required. Script Location. Default: scriptPath.
    scriptPath: # string. Required when scriptLocation = scriptPath. Script Path. 
    #inlineScript: # string. Required when scriptLocation = inlineScript. Inline Script. 
    #arguments: # string. Alias: scriptArguments. Script Arguments. 
    #powerShellErrorActionPreference: 'stop' # 'stop' | 'continue' | 'silentlyContinue'. Optional. Use when scriptType = ps || scriptType = pscore. ErrorActionPreference. Default: stop.
  # Advanced
    #addSpnToEnvironment: false # boolean. Access service principal details in script. Default: false.
    #useGlobalConfig: false # boolean. Use global Azure CLI configuration. Default: false.
    #workingDirectory: # string. Alias: cwd. Working Directory. 
    #failOnStandardError: false # boolean. Fail on Standard Error. Default: false.
    #powerShellIgnoreLASTEXITCODE: false # boolean. Optional. Use when scriptType = ps || scriptType = pscore. Ignore $LASTEXITCODE. Default: false.

输入

azureSubscription - Azure 资源管理器连接
输入别名:connectedServiceNameARMstring。 必填。

为部署选择 Azure 资源管理器服务连接。


scriptType - 脚本类型
string。 必填。 允许的值:ps(PowerShell)、pscore(PowerShell Core)、batchbash(Shell)。

脚本的类型。 在 Linux 代理上运行时,请选择 bashpscore 脚本。 或者,在 Windows 代理上运行时,选择 batchpspscore 脚本。 pscore 脚本可以在跨平台代理(Linux、macOS 或 Windows)上运行。


scriptType - 脚本类型
string。 必填。 允许的值:ps(Powershell)、pscore(Powershell Core)、batchbash(Shell)。

脚本的类型。 在 Linux 代理上运行时,请选择 bashpscore 脚本。 或者,在 Windows 代理上运行时,选择 batchpspscore 脚本。 pscore 脚本可以在跨平台代理(Linux、macOS 或 Windows)上运行。


scriptLocation - 脚本位置
string。 必填。 允许的值:inlineScript(内联脚本)、scriptPath(脚本路径)。 默认值:scriptPath

脚本的路径。


scriptPath - 脚本路径
stringscriptLocation = scriptPath时是必需的。

脚本的完全限定路径。 使用基于 Windows 的代理时,请使用 .ps1.bat.cmd。 使用基于 Linux 的代理或相对于默认工作目录的路径时,请使用 .ps1.sh


inlineScript - 内联脚本
stringscriptLocation = inlineScript时是必需的。

可以在此处内联编写脚本。 使用 Windows 代理时,请使用 PowerShell、PowerShell Core 或批处理脚本。 使用基于 Linux 的代理时,请使用 PowerShell Core 或 shell 脚本。 对于批处理文件,请在每个 Azure 命令之前使用前缀 call。 还可以使用参数将预定义变量和自定义变量传递给此脚本。

下面是 PowerShell/PowerShellCore/shell 的示例。

az --version 
az account show 

下面是批处理的示例。

call  az --version 
call az account show

arguments - 脚本参数
输入别名:scriptArgumentsstring

传递给脚本的参数。


powerShellErrorActionPreference - ErrorActionPreference
string。 可选。 当 scriptType = ps || scriptType = pscore时使用。 允许的值:stopcontinuesilentlyContinue。 默认值:stop

在 PowerShell/PowerShell Core 脚本顶部 $ErrorActionPreference = 'VALUE' 前面追加行。


在脚本addSpnToEnvironment - 访问服务主体详细信息
boolean。 默认值:false

将所选 Azure 终结点的服务主体 ID、服务主体密钥或工作负荷标识联合令牌和租户 ID 添加到脚本的执行环境。 可以在脚本中使用 servicePrincipalIdservicePrincipalKeyidTokentenantId 变量。

仅当 Azure 终结点具有服务主体身份验证方案或工作负荷标识联合身份验证方案时,才会执行此作。

以下列表显示了基于脚本类型访问环境变量的语法。

  • PowerShell 脚本语法:$env:servicePrincipalId

  • 批处理脚本语法:%servicePrincipalId%

  • Shell 脚本语法:$servicePrincipalId


useGlobalConfig - 使用全局 Azure CLI 配置
boolean。 默认值:false

如果此输入为 false,此任务将使用其自己的 Azure CLI 配置目录。 使用此任务在 并行 版本中运行 Azure CLI 任务。


workingDirectory - 工作目录
输入别名:cwdstring

运行脚本的当前工作目录。 如果留空,则此输入是存储库(生成)或项目(release)的根,即 $(System.DefaultWorkingDirectory)


标准错误failOnStandardError - 失败
boolean。 默认值:false

如果此输入为 true,则当任何错误写入 StandardError 流时,此任务将失败。 清除复选框以忽略标准错误,而是依赖于退出代码来确定状态。


powerShellIgnoreLASTEXITCODE - 忽略$LASTEXITCODE
boolean。 可选。 当 scriptType = ps || scriptType = pscore时使用。 默认值:false

如果此输入为 false,则 if ((Test-Path -LiteralPath variable:\LASTEXITCODE)) { exit $LASTEXITCODE } 行追加到脚本末尾。 这将从外部命令传播最后一个退出代码作为 PowerShell 的退出代码。 否则,该行不会追加到脚本的末尾。


visibleAzLogin - az login output visibility
boolean。 默认值:true

如果设置为 true,az login 命令将输出到任务。 将其设置为 false 将禁止 az login output。


任务控制选项

除任务输入之外,所有任务都具有控制选项。 有关详细信息,请参阅 控件选项和常见任务属性

输出变量

没有。

注解

版本任务版本 2.0 中的新增功能

  • 支持 PowerShell 和 PowerShell Core 脚本。
  • PowerShell Core 适用于跨平台代理(Linux、macOS 或 Windows),确保代理具有 PowerShell 版本 6 或更高版本。
  • Powershell 脚本仅适用于 Windows 代理,请确保代理具有 PowerShell 版本 5 或更低版本。

先决条件

  • 一个 Microsoft Azure 订阅。
  • 到你 Azure 帐户的 Azure 资源管理器服务连接
  • Microsoft 托管代理已预安装 Azure CLI。 但是,如果使用的是专用代理,请在运行生成和发布代理的计算机上安装 Azure CLI。 如果代理已在安装了 Azure CLI 的计算机上运行,请重启代理,确保所有相关阶段变量得到更新。

例子

以下示例列出了 Azure CLI 的版本,并获取订阅的详细信息。

- task: AzureCLI@2
  displayName: Azure CLI
  inputs:
    azureSubscription: <Name of the Azure Resource Manager service connection>
    scriptType: ps
    scriptLocation: inlineScript
    inlineScript: |
      az --version
      az account show

以下示例演示如何将参数传递给脚本。

  • 将参数传递给内联脚本:

    - task: AzureCLI@2
      inputs:
        azureSubscription: <Azure_Resource_Manager_Service_Connection>
        scriptType: 'ps'
        scriptLocation: 'inlineScript'
        arguments: '$(AZURE_STORAGE_ACCOUNT) $(AZURE_STORAGE_KEY)'
        inlineScript: './scripts/publish.ps1 $1 $2'
    
  • 使用脚本路径传递参数:

    - task: AzureCLI@2
      inputs:
        azureSubscription: <Azure_Resource_Manager_Service_Connection>
        scriptType: 'ps'
        scriptLocation: 'scriptPath'
        arguments: '$(AZURE_STORAGE_ACCOUNT) $(AZURE_STORAGE_KEY)'
        scriptPath: './scripts/publish.ps1'
    

要求

要求 说明
管道类型 YAML,经典版本,经典版本
运行时间 代理,DeploymentGroup
需求 没有
功能 此任务不满足作业中后续任务的任何要求。
命令限制 任何
Settable 变量 任何
代理版本 2.0.0 或更高版本
任务类别 部署

另请参阅