1. Packages
  2. Azure Classic
  3. API Docs
  4. bot
  5. WebApp

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.bot.WebApp

Explore with Pulumi AI

Manages a Bot Web App.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const current = azure.core.getClientConfig({});
const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleWebApp = new azure.bot.WebApp("example", {
    name: "example",
    location: "global",
    resourceGroupName: example.name,
    sku: "F0",
    microsoftAppId: current.then(current => current.clientId),
});
Copy
import pulumi
import pulumi_azure as azure

current = azure.core.get_client_config()
example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_web_app = azure.bot.WebApp("example",
    name="example",
    location="global",
    resource_group_name=example.name,
    sku="F0",
    microsoft_app_id=current.client_id)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/bot"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		current, err := core.GetClientConfig(ctx, map[string]interface{}{}, nil)
		if err != nil {
			return err
		}
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		_, err = bot.NewWebApp(ctx, "example", &bot.WebAppArgs{
			Name:              pulumi.String("example"),
			Location:          pulumi.String("global"),
			ResourceGroupName: example.Name,
			Sku:               pulumi.String("F0"),
			MicrosoftAppId:    pulumi.String(current.ClientId),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var current = Azure.Core.GetClientConfig.Invoke();

    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleWebApp = new Azure.Bot.WebApp("example", new()
    {
        Name = "example",
        Location = "global",
        ResourceGroupName = example.Name,
        Sku = "F0",
        MicrosoftAppId = current.Apply(getClientConfigResult => getClientConfigResult.ClientId),
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.CoreFunctions;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.bot.WebApp;
import com.pulumi.azure.bot.WebAppArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var current = CoreFunctions.getClientConfig();

        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleWebApp = new WebApp("exampleWebApp", WebAppArgs.builder()
            .name("example")
            .location("global")
            .resourceGroupName(example.name())
            .sku("F0")
            .microsoftAppId(current.applyValue(getClientConfigResult -> getClientConfigResult.clientId()))
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleWebApp:
    type: azure:bot:WebApp
    name: example
    properties:
      name: example
      location: global
      resourceGroupName: ${example.name}
      sku: F0
      microsoftAppId: ${current.clientId}
variables:
  current:
    fn::invoke:
      function: azure:core:getClientConfig
      arguments: {}
Copy

Create WebApp Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new WebApp(name: string, args: WebAppArgs, opts?: CustomResourceOptions);
@overload
def WebApp(resource_name: str,
           args: WebAppArgs,
           opts: Optional[ResourceOptions] = None)

@overload
def WebApp(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           microsoft_app_id: Optional[str] = None,
           sku: Optional[str] = None,
           resource_group_name: Optional[str] = None,
           luis_app_ids: Optional[Sequence[str]] = None,
           endpoint: Optional[str] = None,
           location: Optional[str] = None,
           developer_app_insights_api_key: Optional[str] = None,
           luis_key: Optional[str] = None,
           display_name: Optional[str] = None,
           name: Optional[str] = None,
           developer_app_insights_key: Optional[str] = None,
           developer_app_insights_application_id: Optional[str] = None,
           tags: Optional[Mapping[str, str]] = None)
func NewWebApp(ctx *Context, name string, args WebAppArgs, opts ...ResourceOption) (*WebApp, error)
public WebApp(string name, WebAppArgs args, CustomResourceOptions? opts = null)
public WebApp(String name, WebAppArgs args)
public WebApp(String name, WebAppArgs args, CustomResourceOptions options)
type: azure:bot:WebApp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WebAppArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. WebAppArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. WebAppArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WebAppArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WebAppArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var webAppResource = new Azure.Bot.WebApp("webAppResource", new()
{
    MicrosoftAppId = "string",
    Sku = "string",
    ResourceGroupName = "string",
    LuisAppIds = new[]
    {
        "string",
    },
    Endpoint = "string",
    Location = "string",
    DeveloperAppInsightsApiKey = "string",
    LuisKey = "string",
    DisplayName = "string",
    Name = "string",
    DeveloperAppInsightsKey = "string",
    DeveloperAppInsightsApplicationId = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := bot.NewWebApp(ctx, "webAppResource", &bot.WebAppArgs{
	MicrosoftAppId:    pulumi.String("string"),
	Sku:               pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	LuisAppIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	Endpoint:                          pulumi.String("string"),
	Location:                          pulumi.String("string"),
	DeveloperAppInsightsApiKey:        pulumi.String("string"),
	LuisKey:                           pulumi.String("string"),
	DisplayName:                       pulumi.String("string"),
	Name:                              pulumi.String("string"),
	DeveloperAppInsightsKey:           pulumi.String("string"),
	DeveloperAppInsightsApplicationId: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var webAppResource = new WebApp("webAppResource", WebAppArgs.builder()
    .microsoftAppId("string")
    .sku("string")
    .resourceGroupName("string")
    .luisAppIds("string")
    .endpoint("string")
    .location("string")
    .developerAppInsightsApiKey("string")
    .luisKey("string")
    .displayName("string")
    .name("string")
    .developerAppInsightsKey("string")
    .developerAppInsightsApplicationId("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
web_app_resource = azure.bot.WebApp("webAppResource",
    microsoft_app_id="string",
    sku="string",
    resource_group_name="string",
    luis_app_ids=["string"],
    endpoint="string",
    location="string",
    developer_app_insights_api_key="string",
    luis_key="string",
    display_name="string",
    name="string",
    developer_app_insights_key="string",
    developer_app_insights_application_id="string",
    tags={
        "string": "string",
    })
Copy
const webAppResource = new azure.bot.WebApp("webAppResource", {
    microsoftAppId: "string",
    sku: "string",
    resourceGroupName: "string",
    luisAppIds: ["string"],
    endpoint: "string",
    location: "string",
    developerAppInsightsApiKey: "string",
    luisKey: "string",
    displayName: "string",
    name: "string",
    developerAppInsightsKey: "string",
    developerAppInsightsApplicationId: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure:bot:WebApp
properties:
    developerAppInsightsApiKey: string
    developerAppInsightsApplicationId: string
    developerAppInsightsKey: string
    displayName: string
    endpoint: string
    location: string
    luisAppIds:
        - string
    luisKey: string
    microsoftAppId: string
    name: string
    resourceGroupName: string
    sku: string
    tags:
        string: string
Copy

WebApp Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The WebApp resource accepts the following input properties:

MicrosoftAppId
This property is required.
Changes to this property will trigger replacement.
string
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
Sku
This property is required.
Changes to this property will trigger replacement.
string
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
DeveloperAppInsightsApiKey string
The Application Insights API Key to associate with the Web App Bot.
DeveloperAppInsightsApplicationId string
The Application Insights Application ID to associate with the Web App Bot.
DeveloperAppInsightsKey string
The Application Insights Key to associate with the Web App Bot.
DisplayName string
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
Endpoint string
The Web App Bot endpoint.
Location Changes to this property will trigger replacement. string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
LuisAppIds List<string>
A list of LUIS App IDs to associate with the Web App Bot.
LuisKey string
The LUIS key to associate with the Web App Bot.
Name Changes to this property will trigger replacement. string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.
MicrosoftAppId
This property is required.
Changes to this property will trigger replacement.
string
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
Sku
This property is required.
Changes to this property will trigger replacement.
string
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
DeveloperAppInsightsApiKey string
The Application Insights API Key to associate with the Web App Bot.
DeveloperAppInsightsApplicationId string
The Application Insights Application ID to associate with the Web App Bot.
DeveloperAppInsightsKey string
The Application Insights Key to associate with the Web App Bot.
DisplayName string
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
Endpoint string
The Web App Bot endpoint.
Location Changes to this property will trigger replacement. string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
LuisAppIds []string
A list of LUIS App IDs to associate with the Web App Bot.
LuisKey string
The LUIS key to associate with the Web App Bot.
Name Changes to this property will trigger replacement. string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
Tags map[string]string
A mapping of tags to assign to the resource.
microsoftAppId
This property is required.
Changes to this property will trigger replacement.
String
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
sku
This property is required.
Changes to this property will trigger replacement.
String
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
developerAppInsightsApiKey String
The Application Insights API Key to associate with the Web App Bot.
developerAppInsightsApplicationId String
The Application Insights Application ID to associate with the Web App Bot.
developerAppInsightsKey String
The Application Insights Key to associate with the Web App Bot.
displayName String
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
endpoint String
The Web App Bot endpoint.
location Changes to this property will trigger replacement. String
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
luisAppIds List<String>
A list of LUIS App IDs to associate with the Web App Bot.
luisKey String
The LUIS key to associate with the Web App Bot.
name Changes to this property will trigger replacement. String
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
tags Map<String,String>
A mapping of tags to assign to the resource.
microsoftAppId
This property is required.
Changes to this property will trigger replacement.
string
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
sku
This property is required.
Changes to this property will trigger replacement.
string
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
developerAppInsightsApiKey string
The Application Insights API Key to associate with the Web App Bot.
developerAppInsightsApplicationId string
The Application Insights Application ID to associate with the Web App Bot.
developerAppInsightsKey string
The Application Insights Key to associate with the Web App Bot.
displayName string
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
endpoint string
The Web App Bot endpoint.
location Changes to this property will trigger replacement. string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
luisAppIds string[]
A list of LUIS App IDs to associate with the Web App Bot.
luisKey string
The LUIS key to associate with the Web App Bot.
name Changes to this property will trigger replacement. string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
tags {[key: string]: string}
A mapping of tags to assign to the resource.
microsoft_app_id
This property is required.
Changes to this property will trigger replacement.
str
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
sku
This property is required.
Changes to this property will trigger replacement.
str
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
developer_app_insights_api_key str
The Application Insights API Key to associate with the Web App Bot.
developer_app_insights_application_id str
The Application Insights Application ID to associate with the Web App Bot.
developer_app_insights_key str
The Application Insights Key to associate with the Web App Bot.
display_name str
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
endpoint str
The Web App Bot endpoint.
location Changes to this property will trigger replacement. str
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
luis_app_ids Sequence[str]
A list of LUIS App IDs to associate with the Web App Bot.
luis_key str
The LUIS key to associate with the Web App Bot.
name Changes to this property will trigger replacement. str
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
tags Mapping[str, str]
A mapping of tags to assign to the resource.
microsoftAppId
This property is required.
Changes to this property will trigger replacement.
String
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
sku
This property is required.
Changes to this property will trigger replacement.
String
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
developerAppInsightsApiKey String
The Application Insights API Key to associate with the Web App Bot.
developerAppInsightsApplicationId String
The Application Insights Application ID to associate with the Web App Bot.
developerAppInsightsKey String
The Application Insights Key to associate with the Web App Bot.
displayName String
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
endpoint String
The Web App Bot endpoint.
location Changes to this property will trigger replacement. String
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
luisAppIds List<String>
A list of LUIS App IDs to associate with the Web App Bot.
luisKey String
The LUIS key to associate with the Web App Bot.
name Changes to this property will trigger replacement. String
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
tags Map<String>
A mapping of tags to assign to the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the WebApp resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing WebApp Resource

Get an existing WebApp resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: WebAppState, opts?: CustomResourceOptions): WebApp
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        developer_app_insights_api_key: Optional[str] = None,
        developer_app_insights_application_id: Optional[str] = None,
        developer_app_insights_key: Optional[str] = None,
        display_name: Optional[str] = None,
        endpoint: Optional[str] = None,
        location: Optional[str] = None,
        luis_app_ids: Optional[Sequence[str]] = None,
        luis_key: Optional[str] = None,
        microsoft_app_id: Optional[str] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        sku: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None) -> WebApp
func GetWebApp(ctx *Context, name string, id IDInput, state *WebAppState, opts ...ResourceOption) (*WebApp, error)
public static WebApp Get(string name, Input<string> id, WebAppState? state, CustomResourceOptions? opts = null)
public static WebApp get(String name, Output<String> id, WebAppState state, CustomResourceOptions options)
resources:  _:    type: azure:bot:WebApp    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
DeveloperAppInsightsApiKey string
The Application Insights API Key to associate with the Web App Bot.
DeveloperAppInsightsApplicationId string
The Application Insights Application ID to associate with the Web App Bot.
DeveloperAppInsightsKey string
The Application Insights Key to associate with the Web App Bot.
DisplayName string
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
Endpoint string
The Web App Bot endpoint.
Location Changes to this property will trigger replacement. string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
LuisAppIds List<string>
A list of LUIS App IDs to associate with the Web App Bot.
LuisKey string
The LUIS key to associate with the Web App Bot.
MicrosoftAppId Changes to this property will trigger replacement. string
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
Sku Changes to this property will trigger replacement. string
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags to assign to the resource.
DeveloperAppInsightsApiKey string
The Application Insights API Key to associate with the Web App Bot.
DeveloperAppInsightsApplicationId string
The Application Insights Application ID to associate with the Web App Bot.
DeveloperAppInsightsKey string
The Application Insights Key to associate with the Web App Bot.
DisplayName string
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
Endpoint string
The Web App Bot endpoint.
Location Changes to this property will trigger replacement. string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
LuisAppIds []string
A list of LUIS App IDs to associate with the Web App Bot.
LuisKey string
The LUIS key to associate with the Web App Bot.
MicrosoftAppId Changes to this property will trigger replacement. string
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
Sku Changes to this property will trigger replacement. string
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags to assign to the resource.
developerAppInsightsApiKey String
The Application Insights API Key to associate with the Web App Bot.
developerAppInsightsApplicationId String
The Application Insights Application ID to associate with the Web App Bot.
developerAppInsightsKey String
The Application Insights Key to associate with the Web App Bot.
displayName String
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
endpoint String
The Web App Bot endpoint.
location Changes to this property will trigger replacement. String
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
luisAppIds List<String>
A list of LUIS App IDs to associate with the Web App Bot.
luisKey String
The LUIS key to associate with the Web App Bot.
microsoftAppId Changes to this property will trigger replacement. String
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
resourceGroupName Changes to this property will trigger replacement. String
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
sku Changes to this property will trigger replacement. String
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags to assign to the resource.
developerAppInsightsApiKey string
The Application Insights API Key to associate with the Web App Bot.
developerAppInsightsApplicationId string
The Application Insights Application ID to associate with the Web App Bot.
developerAppInsightsKey string
The Application Insights Key to associate with the Web App Bot.
displayName string
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
endpoint string
The Web App Bot endpoint.
location Changes to this property will trigger replacement. string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
luisAppIds string[]
A list of LUIS App IDs to associate with the Web App Bot.
luisKey string
The LUIS key to associate with the Web App Bot.
microsoftAppId Changes to this property will trigger replacement. string
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
resourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
sku Changes to this property will trigger replacement. string
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags to assign to the resource.
developer_app_insights_api_key str
The Application Insights API Key to associate with the Web App Bot.
developer_app_insights_application_id str
The Application Insights Application ID to associate with the Web App Bot.
developer_app_insights_key str
The Application Insights Key to associate with the Web App Bot.
display_name str
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
endpoint str
The Web App Bot endpoint.
location Changes to this property will trigger replacement. str
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
luis_app_ids Sequence[str]
A list of LUIS App IDs to associate with the Web App Bot.
luis_key str
The LUIS key to associate with the Web App Bot.
microsoft_app_id Changes to this property will trigger replacement. str
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
resource_group_name Changes to this property will trigger replacement. str
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
sku Changes to this property will trigger replacement. str
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags to assign to the resource.
developerAppInsightsApiKey String
The Application Insights API Key to associate with the Web App Bot.
developerAppInsightsApplicationId String
The Application Insights Application ID to associate with the Web App Bot.
developerAppInsightsKey String
The Application Insights Key to associate with the Web App Bot.
displayName String
The name of the Web App Bot will be displayed as. This defaults to name if not specified.
endpoint String
The Web App Bot endpoint.
location Changes to this property will trigger replacement. String
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
luisAppIds List<String>
A list of LUIS App IDs to associate with the Web App Bot.
luisKey String
The LUIS key to associate with the Web App Bot.
microsoftAppId Changes to this property will trigger replacement. String
The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
resourceGroupName Changes to this property will trigger replacement. String
The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
sku Changes to this property will trigger replacement. String
The SKU of the Web App Bot. Valid values include F0 or S1. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags to assign to the resource.

Import

Bot Web App’s can be imported using the resource id, e.g.

$ pulumi import azure:bot/webApp:WebApp example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.BotService/botServices/example
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.