共用方式為


AzureAppServiceSettings@1 - Azure App 服務 設定 v1 工作

更新或新增適用于 Linux 或 Windows 的 Azure Web 應用程式中的應用程式服務設定。

Syntax

# Azure App Service Settings v1
# Update/Add App settings an Azure Web App for Linux or Windows.
- task: AzureAppServiceSettings@1
  inputs:
    azureSubscription: # string. Alias: ConnectedServiceName. Required. Azure subscription. 
    appName: # string. Required. App Service name. 
    resourceGroupName: # string. Required. Resource group. 
    #slotName: 'production' # string. Slot. Default: production.
  # Application and Configuration Settings
    #appSettings: # string. App settings. 
    #generalSettings: # string. General settings. 
    #connectionStrings: # string. Connection Strings.

輸入

azureSubscription - Azure 訂用帳戶
輸入別名: ConnectedServiceNamestring. 必要。

選取 Azure Resource Manager訂用帳戶。


appName - App Service名稱
string. 必要。

輸入或選取現有Azure App 服務的名稱。


resourceGroupName - 資源群組
string. 必要。

輸入或選取包含上面指定之Azure App 服務的 Azure 資源群組。


slotName -
string. 預設值:production

輸入或選取現有的位置。 如果您未選取位置,則會對生產環境進行變更。


appSettings - 應用程式設定
string.

JSON 語法中的應用程式設定。 以雙引號括住包含空格的值。 如需詳細資訊,請參閱設定應用程式設定

以下是 JSON 語法的範例:

[
   {
    "name": "key1",
    "value": "valueabcd",
    "slotSetting": false
   },
   {
    "name": "key2",
    "value": "valueefgh",
    "slotSetting": true
   }
]

generalSettings - 一般設定
string.

JSON 語法中的一般設定。 以雙引號括住包含空格的值。 如需可用屬性的清單,請參閱App Service SiteConfig 目的檔。 如需詳細資訊,請參閱 設定一般設定

以下是 JSON 語法的範例:

[
   {
    "alwaysOn": true,
    "webSocketsEnabled": false
   }
]

connectionStrings - 連接字串
string.

JSON 語法中的連接字串。 以雙引號括住包含空格的值。 如需詳細資訊,請參閱 設定連接字串

以下是 JSON 語法的範例:

[
   {
    "name": "key1",
    "value": "valueabcd",
    "type": "MySql",
    "slotSetting": false
   },
   {
    "name": "key2",
    "value": "valueefgh",
    "type": "Custom",
    "slotSetting": true
   }
]

工作控制項選項

除了工作輸入之外,所有工作都有控制選項。 如需詳細資訊,請參閱 控制選項和一般工作屬性

輸出變數

無。

備註

使用此工作,在 Web 應用程式或其任何部署位置上使用 JSON 語法,大量設定應用程式設定、連接字串和其他一般設定。 工作適用于跨平臺執行 Windows、Linux 或 Mac 的 Azure Pipelines 代理程式。 工作適用于以 ASP.NET、ASP.NET Core、PHP、JAVA、Python、Go 和Node.js為基礎的 Web 應用程式。

範例

下列範例 YAML 程式碼片段會將 Web 應用程式部署到 Windows 上執行的 Azure Web App Service。


variables:
  azureSubscription: Contoso
  WebApp_Name: sampleWebApp
  # To ignore SSL error uncomment the below variable
  # VSTS_ARM_REST_IGNORE_SSL_ERRORS: true

steps:

- task: AzureWebApp@1
  displayName: Azure Web App Deploy
  inputs:
    azureSubscription: $(azureSubscription)
    appName: $(WebApp_Name)
    package: $(System.DefaultWorkingDirectory)/**/*.zip

- task: AzureAppServiceSettings@1
  displayName: Azure App Service Settings
  inputs:
    azureSubscription: $(azureSubscription)
    appName: $(WebApp_Name)
   # To deploy the settings on a slot, provide slot name as below. By default, the settings would be applied to the actual Web App (Production slot)
   # slotName: staging
    appSettings: |
      [
        {
          "name": "APPINSIGHTS_INSTRUMENTATIONKEY",
          "value": "$(Key)",
          "slotSetting": false
        },
        {
          "name": "MYSQL_DATABASE_NAME",
          "value": "$(DB_Name)", 
          "slotSetting": false
        }
      ]
    generalSettings: |
      [
        {
          "alwaysOn": true,
          "webSocketsEnabled": false
        }
      ]
    connectionStrings: |
      [
        {
          "name": "MysqlCredentials",
          "value": "$(MySQl_ConnectionString)",
          "type": "MySql",
          "slotSetting": false
        }
      ]

規格需求

需求 描述
管線類型 YAML、傳統組建、傳統版本
在 上執行 Agent、DeploymentGroup
要求
Capabilities 此工作不符合作業中後續工作的任何需求。
命令限制 任意
可設定變數 任意
代理程式版本 2.104.1 或更新版本
工作類別 部署