We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages an Azure Bot Service.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleInsights = new Azure.AppInsights.Insights("exampleInsights", new Azure.AppInsights.InsightsArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
ApplicationType = "web",
});
var exampleApiKey = new Azure.AppInsights.ApiKey("exampleApiKey", new Azure.AppInsights.ApiKeyArgs
{
ApplicationInsightsId = exampleInsights.Id,
ReadPermissions =
{
"aggregate",
"api",
"draft",
"extendqueries",
"search",
},
});
var exampleServiceAzureBot = new Azure.Bot.ServiceAzureBot("exampleServiceAzureBot", new Azure.Bot.ServiceAzureBotArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = "global",
MicrosoftAppId = data.Azurerm_client_config.Current.Client_id,
Sku = "F0",
Endpoint = "https://example.com",
DeveloperAppInsightsApiKey = exampleApiKey.ApiKey,
DeveloperAppInsightsApplicationId = exampleInsights.AppId,
Tags =
{
{ "environment", "test" },
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/appinsights"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/bot"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleInsights, err := appinsights.NewInsights(ctx, "exampleInsights", &appinsights.InsightsArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
ApplicationType: pulumi.String("web"),
})
if err != nil {
return err
}
exampleApiKey, err := appinsights.NewApiKey(ctx, "exampleApiKey", &appinsights.ApiKeyArgs{
ApplicationInsightsId: exampleInsights.ID(),
ReadPermissions: pulumi.StringArray{
pulumi.String("aggregate"),
pulumi.String("api"),
pulumi.String("draft"),
pulumi.String("extendqueries"),
pulumi.String("search"),
},
})
if err != nil {
return err
}
_, err = bot.NewServiceAzureBot(ctx, "exampleServiceAzureBot", &bot.ServiceAzureBotArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: pulumi.String("global"),
MicrosoftAppId: pulumi.Any(data.Azurerm_client_config.Current.Client_id),
Sku: pulumi.String("F0"),
Endpoint: pulumi.String("https://example.com"),
DeveloperAppInsightsApiKey: exampleApiKey.ApiKey,
DeveloperAppInsightsApplicationId: exampleInsights.AppId,
Tags: pulumi.StringMap{
"environment": pulumi.String("test"),
},
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleInsights = new azure.appinsights.Insights("exampleInsights", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
applicationType: "web",
});
const exampleApiKey = new azure.appinsights.ApiKey("exampleApiKey", {
applicationInsightsId: exampleInsights.id,
readPermissions: [
"aggregate",
"api",
"draft",
"extendqueries",
"search",
],
});
const exampleServiceAzureBot = new azure.bot.ServiceAzureBot("exampleServiceAzureBot", {
resourceGroupName: exampleResourceGroup.name,
location: "global",
microsoftAppId: data.azurerm_client_config.current.client_id,
sku: "F0",
endpoint: "https://example.com",
developerAppInsightsApiKey: exampleApiKey.apiKey,
developerAppInsightsApplicationId: exampleInsights.appId,
tags: {
environment: "test",
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_insights = azure.appinsights.Insights("exampleInsights",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
application_type="web")
example_api_key = azure.appinsights.ApiKey("exampleApiKey",
application_insights_id=example_insights.id,
read_permissions=[
"aggregate",
"api",
"draft",
"extendqueries",
"search",
])
example_service_azure_bot = azure.bot.ServiceAzureBot("exampleServiceAzureBot",
resource_group_name=example_resource_group.name,
location="global",
microsoft_app_id=data["azurerm_client_config"]["current"]["client_id"],
sku="F0",
endpoint="https://example.com",
developer_app_insights_api_key=example_api_key.api_key,
developer_app_insights_application_id=example_insights.app_id,
tags={
"environment": "test",
})
Example coming soon!
Create ServiceAzureBot Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceAzureBot(name: string, args: ServiceAzureBotArgs, opts?: CustomResourceOptions);@overload
def ServiceAzureBot(resource_name: str,
args: ServiceAzureBotArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceAzureBot(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 NewServiceAzureBot(ctx *Context, name string, args ServiceAzureBotArgs, opts ...ResourceOption) (*ServiceAzureBot, error)public ServiceAzureBot(string name, ServiceAzureBotArgs args, CustomResourceOptions? opts = null)
public ServiceAzureBot(String name, ServiceAzureBotArgs args)
public ServiceAzureBot(String name, ServiceAzureBotArgs args, CustomResourceOptions options)
type: azure:bot:ServiceAzureBot
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServiceAzureBotArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServiceAzureBotArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServiceAzureBotArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceAzureBotArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceAzureBotArgs
- 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 serviceAzureBotResource = new Azure.Bot.ServiceAzureBot("serviceAzureBotResource", 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" },
},
});
example, err := bot.NewServiceAzureBot(ctx, "serviceAzureBotResource", &bot.ServiceAzureBotArgs{
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"),
},
})
var serviceAzureBotResource = new ServiceAzureBot("serviceAzureBotResource", ServiceAzureBotArgs.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());
service_azure_bot_resource = azure.bot.ServiceAzureBot("serviceAzureBotResource",
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",
})
const serviceAzureBotResource = new azure.bot.ServiceAzureBot("serviceAzureBotResource", {
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",
},
});
type: azure:bot:ServiceAzureBot
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
ServiceAzureBot 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 ServiceAzureBot resource accepts the following input properties:
- Microsoft
App stringId - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- Sku string
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - Developer
App stringInsights Api Key - The Application Insights Api Key to associate with this Azure Bot Service.
- Developer
App stringInsights Application Id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- Developer
App stringInsights Key - The Application Insight Key to associate with this Azure Bot Service.
- Display
Name string - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - Endpoint string
- The Azure Bot Service endpoint.
- Location string
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- Luis
App List<string>Ids - A list of LUIS App IDs to associate with this Azure Bot Service.
- Luis
Key string - The LUIS key to associate with this Azure Bot Service.
- Name string
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to this Azure Bot Service.
- Microsoft
App stringId - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- Sku string
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - Developer
App stringInsights Api Key - The Application Insights Api Key to associate with this Azure Bot Service.
- Developer
App stringInsights Application Id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- Developer
App stringInsights Key - The Application Insight Key to associate with this Azure Bot Service.
- Display
Name string - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - Endpoint string
- The Azure Bot Service endpoint.
- Location string
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- Luis
App []stringIds - A list of LUIS App IDs to associate with this Azure Bot Service.
- Luis
Key string - The LUIS key to associate with this Azure Bot Service.
- Name string
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags which should be assigned to this Azure Bot Service.
- microsoft
App StringId - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- sku String
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - developer
App StringInsights Api Key - The Application Insights Api Key to associate with this Azure Bot Service.
- developer
App StringInsights Application Id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- developer
App StringInsights Key - The Application Insight Key to associate with this Azure Bot Service.
- display
Name String - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - endpoint String
- The Azure Bot Service endpoint.
- location String
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- luis
App List<String>Ids - A list of LUIS App IDs to associate with this Azure Bot Service.
- luis
Key String - The LUIS key to associate with this Azure Bot Service.
- name String
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags which should be assigned to this Azure Bot Service.
- microsoft
App stringId - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- resource
Group stringName - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- sku string
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - developer
App stringInsights Api Key - The Application Insights Api Key to associate with this Azure Bot Service.
- developer
App stringInsights Application Id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- developer
App stringInsights Key - The Application Insight Key to associate with this Azure Bot Service.
- display
Name string - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - endpoint string
- The Azure Bot Service endpoint.
- location string
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- luis
App string[]Ids - A list of LUIS App IDs to associate with this Azure Bot Service.
- luis
Key string - The LUIS key to associate with this Azure Bot Service.
- name string
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to this Azure Bot Service.
- microsoft_
app_ strid - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- resource_
group_ strname - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- sku str
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - developer_
app_ strinsights_ api_ key - The Application Insights Api Key to associate with this Azure Bot Service.
- developer_
app_ strinsights_ application_ id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- developer_
app_ strinsights_ key - The Application Insight Key to associate with this Azure Bot Service.
- display_
name str - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - endpoint str
- The Azure Bot Service endpoint.
- location str
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- luis_
app_ Sequence[str]ids - A list of LUIS App IDs to associate with this Azure Bot Service.
- luis_
key str - The LUIS key to associate with this Azure Bot Service.
- name str
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to this Azure Bot Service.
- microsoft
App StringId - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- sku String
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - developer
App StringInsights Api Key - The Application Insights Api Key to associate with this Azure Bot Service.
- developer
App StringInsights Application Id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- developer
App StringInsights Key - The Application Insight Key to associate with this Azure Bot Service.
- display
Name String - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - endpoint String
- The Azure Bot Service endpoint.
- location String
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- luis
App List<String>Ids - A list of LUIS App IDs to associate with this Azure Bot Service.
- luis
Key String - The LUIS key to associate with this Azure Bot Service.
- name String
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags which should be assigned to this Azure Bot Service.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceAzureBot 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 ServiceAzureBot Resource
Get an existing ServiceAzureBot 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?: ServiceAzureBotState, opts?: CustomResourceOptions): ServiceAzureBot@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) -> ServiceAzureBotfunc GetServiceAzureBot(ctx *Context, name string, id IDInput, state *ServiceAzureBotState, opts ...ResourceOption) (*ServiceAzureBot, error)public static ServiceAzureBot Get(string name, Input<string> id, ServiceAzureBotState? state, CustomResourceOptions? opts = null)public static ServiceAzureBot get(String name, Output<String> id, ServiceAzureBotState state, CustomResourceOptions options)resources: _: type: azure:bot:ServiceAzureBot get: id: ${id}- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Developer
App stringInsights Api Key - The Application Insights Api Key to associate with this Azure Bot Service.
- Developer
App stringInsights Application Id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- Developer
App stringInsights Key - The Application Insight Key to associate with this Azure Bot Service.
- Display
Name string - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - Endpoint string
- The Azure Bot Service endpoint.
- Location string
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- Luis
App List<string>Ids - A list of LUIS App IDs to associate with this Azure Bot Service.
- Luis
Key string - The LUIS key to associate with this Azure Bot Service.
- Microsoft
App stringId - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- Sku string
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - Dictionary<string, string>
- A mapping of tags which should be assigned to this Azure Bot Service.
- Developer
App stringInsights Api Key - The Application Insights Api Key to associate with this Azure Bot Service.
- Developer
App stringInsights Application Id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- Developer
App stringInsights Key - The Application Insight Key to associate with this Azure Bot Service.
- Display
Name string - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - Endpoint string
- The Azure Bot Service endpoint.
- Location string
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- Luis
App []stringIds - A list of LUIS App IDs to associate with this Azure Bot Service.
- Luis
Key string - The LUIS key to associate with this Azure Bot Service.
- Microsoft
App stringId - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- Name string
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- Sku string
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - map[string]string
- A mapping of tags which should be assigned to this Azure Bot Service.
- developer
App StringInsights Api Key - The Application Insights Api Key to associate with this Azure Bot Service.
- developer
App StringInsights Application Id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- developer
App StringInsights Key - The Application Insight Key to associate with this Azure Bot Service.
- display
Name String - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - endpoint String
- The Azure Bot Service endpoint.
- location String
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- luis
App List<String>Ids - A list of LUIS App IDs to associate with this Azure Bot Service.
- luis
Key String - The LUIS key to associate with this Azure Bot Service.
- microsoft
App StringId - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- name String
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- sku String
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - Map<String,String>
- A mapping of tags which should be assigned to this Azure Bot Service.
- developer
App stringInsights Api Key - The Application Insights Api Key to associate with this Azure Bot Service.
- developer
App stringInsights Application Id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- developer
App stringInsights Key - The Application Insight Key to associate with this Azure Bot Service.
- display
Name string - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - endpoint string
- The Azure Bot Service endpoint.
- location string
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- luis
App string[]Ids - A list of LUIS App IDs to associate with this Azure Bot Service.
- luis
Key string - The LUIS key to associate with this Azure Bot Service.
- microsoft
App stringId - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- name string
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- resource
Group stringName - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- sku string
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - {[key: string]: string}
- A mapping of tags which should be assigned to this Azure Bot Service.
- developer_
app_ strinsights_ api_ key - The Application Insights Api Key to associate with this Azure Bot Service.
- developer_
app_ strinsights_ application_ id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- developer_
app_ strinsights_ key - The Application Insight Key to associate with this Azure Bot Service.
- display_
name str - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - endpoint str
- The Azure Bot Service endpoint.
- location str
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- luis_
app_ Sequence[str]ids - A list of LUIS App IDs to associate with this Azure Bot Service.
- luis_
key str - The LUIS key to associate with this Azure Bot Service.
- microsoft_
app_ strid - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- name str
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- resource_
group_ strname - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- sku str
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - Mapping[str, str]
- A mapping of tags which should be assigned to this Azure Bot Service.
- developer
App StringInsights Api Key - The Application Insights Api Key to associate with this Azure Bot Service.
- developer
App StringInsights Application Id - The resource ID of the Application Insights instance to associate with this Azure Bot Service.
- developer
App StringInsights Key - The Application Insight Key to associate with this Azure Bot Service.
- display
Name String - The name that the Azure Bot Service will be displayed as. This defaults to the value set for
nameif not specified. - endpoint String
- The Azure Bot Service endpoint.
- location String
- The supported Azure location where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- luis
App List<String>Ids - A list of LUIS App IDs to associate with this Azure Bot Service.
- luis
Key String - The LUIS key to associate with this Azure Bot Service.
- microsoft
App StringId - The Microsoft Application ID for the Azure Bot Service. Changing this forces a new resource to be created.
- name String
- The name which should be used for this Azure Bot Service. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the Resource Group where the Azure Bot Service should exist. Changing this forces a new resource to be created.
- sku String
- The SKU of the Azure Bot Service. Accepted values are
F0orS1. Changing this forces a new resource to be created. - Map<String>
- A mapping of tags which should be assigned to this Azure Bot Service.
Import
Azure Bot Services can be imported using the resource id, e.g.
$ pulumi import azure:bot/serviceAzureBot:ServiceAzureBot example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.BotService/botServices/botService1
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
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
