WebApp
Manages a Bot Web App.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var current = Output.Create(Azure.Core.GetClientConfig.InvokeAsync());
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "northeurope",
});
var exampleWebApp = new Azure.Bot.WebApp("exampleWebApp", new Azure.Bot.WebAppArgs
{
Location = "global",
ResourceGroupName = exampleResourceGroup.Name,
Sku = "F0",
MicrosoftAppId = current.Apply(current => current.ClientId),
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/bot"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
current, err := core.GetClientConfig(ctx, nil, nil)
if err != nil {
return err
}
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("northeurope"),
})
if err != nil {
return err
}
_, err = bot.NewWebApp(ctx, "exampleWebApp", &bot.WebAppArgs{
Location: pulumi.String("global"),
ResourceGroupName: exampleResourceGroup.Name,
Sku: pulumi.String("F0"),
MicrosoftAppId: pulumi.String(current.ClientId),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_azure as azure
current = azure.core.get_client_config()
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="northeurope")
example_web_app = azure.bot.WebApp("exampleWebApp",
location="global",
resource_group_name=example_resource_group.name,
sku="F0",
microsoft_app_id=current.client_id)import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const current = azure.core.getClientConfig({});
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "northeurope"});
const exampleWebApp = new azure.bot.WebApp("exampleWebApp", {
location: "global",
resourceGroupName: exampleResourceGroup.name,
sku: "F0",
microsoftAppId: current.then(current => current.clientId),
});Create a WebApp Resource
new WebApp(name: string, args: WebAppArgs, opts?: CustomResourceOptions);def WebApp(resource_name, opts=None, developer_app_insights_api_key=None, developer_app_insights_application_id=None, developer_app_insights_key=None, display_name=None, endpoint=None, location=None, luis_app_ids=None, luis_key=None, microsoft_app_id=None, name=None, resource_group_name=None, sku=None, tags=None, __props__=None);func NewWebApp(ctx *Context, name string, args WebAppArgs, opts ...ResourceOption) (*WebApp, error)public WebApp(string name, WebAppArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args WebAppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WebAppArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WebAppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
WebApp Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The WebApp resource accepts the following input properties:
- Microsoft
App stringId The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
- Sku string
The SKU of the Web App Bot. Valid values include
F0orS1. Changing this forces a new resource to be created.- Developer
App stringInsights Api Key The Application Insights API Key to associate with the Web App Bot.
- Developer
App stringInsights Application Id The Application Insights Application ID to associate with the Web App Bot.
- Developer
App stringInsights Key The Application Insights Key to associate with the Web App Bot.
- Display
Name string The name of the Web App Bot will be displayed as. This defaults to
nameif not specified.- Endpoint string
The Web App Bot endpoint.
- Location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Luis
App List<string>Ids A list of LUIS App IDs to associate with the Web App Bot.
- Luis
Key string The LUIS key to associate with the Web App Bot.
- Name string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Microsoft
App stringId The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
- Sku string
The SKU of the Web App Bot. Valid values include
F0orS1. Changing this forces a new resource to be created.- Developer
App stringInsights Api Key The Application Insights API Key to associate with the Web App Bot.
- Developer
App stringInsights Application Id The Application Insights Application ID to associate with the Web App Bot.
- Developer
App stringInsights Key The Application Insights Key to associate with the Web App Bot.
- Display
Name string The name of the Web App Bot will be displayed as. This defaults to
nameif not specified.- Endpoint string
The Web App Bot endpoint.
- Location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Luis
App []stringIds A list of LUIS App IDs to associate with the Web App Bot.
- Luis
Key string The LUIS key to associate with the Web App Bot.
- Name string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
- map[string]string
A mapping of tags to assign to the resource.
- microsoft
App stringId The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
- resource
Group stringName The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
- sku string
The SKU of the Web App Bot. Valid values include
F0orS1. Changing this forces a new resource to be created.- developer
App stringInsights Api Key The Application Insights API Key to associate with the Web App Bot.
- developer
App stringInsights Application Id The Application Insights Application ID to associate with the Web App Bot.
- developer
App stringInsights Key The Application Insights Key to associate with the Web App Bot.
- display
Name string The name of the Web App Bot will be displayed as. This defaults to
nameif not specified.- endpoint string
The Web App Bot endpoint.
- location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- luis
App string[]Ids A list of LUIS App IDs to associate with the Web App Bot.
- luis
Key string The LUIS key to associate with the Web App Bot.
- name string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
- {[key: string]: string}
A mapping of tags to assign to the resource.
- microsoft_
app_ strid The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
- resource_
group_ strname The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
- sku str
The SKU of the Web App Bot. Valid values include
F0orS1. Changing this forces a new resource to be created.- developer_
app_ strinsights_ api_ key The Application Insights API Key to associate with the Web App Bot.
- developer_
app_ strinsights_ application_ id The Application Insights Application ID to associate with the Web App Bot.
- developer_
app_ strinsights_ key 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
nameif not specified.- endpoint str
The Web App Bot endpoint.
- location str
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- luis_
app_ List[str]ids 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 str
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
- Dict[str, str]
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:
Look up an 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): WebAppstatic get(resource_name, id, opts=None, developer_app_insights_api_key=None, developer_app_insights_application_id=None, developer_app_insights_key=None, display_name=None, endpoint=None, location=None, luis_app_ids=None, luis_key=None, microsoft_app_id=None, name=None, resource_group_name=None, sku=None, tags=None, __props__=None);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)- 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.
The following state arguments are supported:
- Developer
App stringInsights Api Key The Application Insights API Key to associate with the Web App Bot.
- Developer
App stringInsights Application Id The Application Insights Application ID to associate with the Web App Bot.
- Developer
App stringInsights Key The Application Insights Key to associate with the Web App Bot.
- Display
Name string The name of the Web App Bot will be displayed as. This defaults to
nameif not specified.- Endpoint string
The Web App Bot endpoint.
- Location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Luis
App List<string>Ids A list of LUIS App IDs to associate with the Web App Bot.
- Luis
Key string The LUIS key to associate with the Web App Bot.
- Microsoft
App stringId The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
- Name string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
- Resource
Group stringName The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
- Sku string
The SKU of the Web App Bot. Valid values include
F0orS1. Changing this forces a new resource to be created.- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Developer
App stringInsights Api Key The Application Insights API Key to associate with the Web App Bot.
- Developer
App stringInsights Application Id The Application Insights Application ID to associate with the Web App Bot.
- Developer
App stringInsights Key The Application Insights Key to associate with the Web App Bot.
- Display
Name string The name of the Web App Bot will be displayed as. This defaults to
nameif not specified.- Endpoint string
The Web App Bot endpoint.
- Location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Luis
App []stringIds A list of LUIS App IDs to associate with the Web App Bot.
- Luis
Key string The LUIS key to associate with the Web App Bot.
- Microsoft
App stringId The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
- Name string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
- Resource
Group stringName The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
- Sku string
The SKU of the Web App Bot. Valid values include
F0orS1. Changing this forces a new resource to be created.- map[string]string
A mapping of tags to assign to the resource.
- developer
App stringInsights Api Key The Application Insights API Key to associate with the Web App Bot.
- developer
App stringInsights Application Id The Application Insights Application ID to associate with the Web App Bot.
- developer
App stringInsights Key The Application Insights Key to associate with the Web App Bot.
- display
Name string The name of the Web App Bot will be displayed as. This defaults to
nameif not specified.- endpoint string
The Web App Bot endpoint.
- location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- luis
App string[]Ids A list of LUIS App IDs to associate with the Web App Bot.
- luis
Key string The LUIS key to associate with the Web App Bot.
- microsoft
App stringId The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
- name string
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
- resource
Group stringName The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
- sku string
The SKU of the Web App Bot. Valid values include
F0orS1. Changing this forces a new resource to be created.- {[key: string]: string}
A mapping of tags to assign to the resource.
- developer_
app_ strinsights_ api_ key The Application Insights API Key to associate with the Web App Bot.
- developer_
app_ strinsights_ application_ id The Application Insights Application ID to associate with the Web App Bot.
- developer_
app_ strinsights_ key 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
nameif not specified.- endpoint str
The Web App Bot endpoint.
- location str
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- luis_
app_ List[str]ids 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_ strid The Microsoft Application ID for the Web App Bot. Changing this forces a new resource to be created.
- name str
Specifies the name of the Web App Bot. Changing this forces a new resource to be created. Must be globally unique.
- resource_
group_ strname The name of the resource group in which to create the Web App Bot. Changing this forces a new resource to be created.
- sku str
The SKU of the Web App Bot. Valid values include
F0orS1. Changing this forces a new resource to be created.- Dict[str, str]
A mapping of tags to assign to the resource.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.