deployWebApp
It first connects to the intended Azure Tenant Subscription with provided credentials. Next, it updates Application Setting/Connection String properties in Azure Web App(optional). While doing so it performs environment and project-specific property replacement as well. This operation can either deploy a code archive or a docker container(including a multi-container). In case a code archive is provided the same is deployed to Azure Web App. In case docker image details are provided the same is updated in the Azure Web App configuration. You need to create a Web App artifact as part of the build workflow containing the Application Setting/Connection String properties file and code archive (whichever is applicable).
Show deployment log is an optional feature(only for code archive deployment), that allows the developer to retrieve execution logs in case someone wants to verify the deployment steps.
Remote Build is an optional feature to upload the code to the Azure Web App backend and build it there itself (e.g: .NET/Node.js).
This operation should return the status and response details of execution details from Azure.
Target PropertiesÂ
Property Name | Property Code | Required | Description |
---|---|---|---|
Registry Account |
| Yes | The Docker Registry account to use. |
Web App Slot Name |
| Yes | Slot for Web App deployment |
Azure Cloud Account |
| Yes | Azure cloud account name |
Absolute path of Azure CLI |
| No | e.g. /u01/azure/bin/az or c:\\azure\cli\wbin\az |
Project PropertiesÂ
Property Name | Property Code | Required | Description |
---|---|---|---|
Web App Name |
| Yes | Azure Web App name |
Resource Group Name |
| Yes | Azure Resource Group name |
Execute Remote Build |
| No | Select in case Remote Build is required |
Application Setting File Name |
| No | Name of Application Settings file |
Connection String File Name |
| No | Name of Connection String file |
Show Deployment Log |
| No | To get detailed deployment log(if available). |
Docker Image Name |
| No | The name of the docker image, including the repository if desired. i.e. foo/bar or bar. |
Docker Image Tag |
| No | The tag of the docker image. |
Multi Container Config Type |
| No | Multi container config type for Web App |
Multi Container Config File |
| No | Multi container config file for Web App |
Inputs
Input Name | Input Code | Required | Description |
---|---|---|---|
Application Setting Properties |
| No | Upsert any Application Setting property(s) |
Connection String Properties |
| No | Upsert any Connection String property(s) |
Outputs
Output Name | Required | Description |
---|---|---|
| Yes | Status of the deployment |
| Yes | Response of the deployment |
| No | Error (in case any) from the deployment |
| No | Detailed log (in case requested) of the deployment |
Artifacts
This operation consumes artifacts. Â
Endpoint Execution
This operation will execute on any one of the selected endpoints and will be random in the determination of which one.
Endpoint Execution
This operation will execute on any one of the selected endpoints and will be random in the determination of which one.
- style