ChannelTeams
Manages a MS Teams integration for a Bot Channel
Note A bot can only have a single MS Teams Channel associated with it.
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 exampleChannelsRegistration = new Azure.Bot.ChannelsRegistration("exampleChannelsRegistration", new Azure.Bot.ChannelsRegistrationArgs
{
Location = "global",
ResourceGroupName = exampleResourceGroup.Name,
Sku = "F0",
MicrosoftAppId = current.Apply(current => current.ClientId),
});
var exampleChannelTeams = new Azure.Bot.ChannelTeams("exampleChannelTeams", new Azure.Bot.ChannelTeamsArgs
{
BotName = exampleChannelsRegistration.Name,
Location = exampleChannelsRegistration.Location,
ResourceGroupName = exampleResourceGroup.Name,
});
}
}
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
}
exampleChannelsRegistration, err := bot.NewChannelsRegistration(ctx, "exampleChannelsRegistration", &bot.ChannelsRegistrationArgs{
Location: pulumi.String("global"),
ResourceGroupName: exampleResourceGroup.Name,
Sku: pulumi.String("F0"),
MicrosoftAppId: pulumi.String(current.ClientId),
})
if err != nil {
return err
}
_, err = bot.NewChannelTeams(ctx, "exampleChannelTeams", &bot.ChannelTeamsArgs{
BotName: exampleChannelsRegistration.Name,
Location: exampleChannelsRegistration.Location,
ResourceGroupName: exampleResourceGroup.Name,
})
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_channels_registration = azure.bot.ChannelsRegistration("exampleChannelsRegistration",
location="global",
resource_group_name=example_resource_group.name,
sku="F0",
microsoft_app_id=current.client_id)
example_channel_teams = azure.bot.ChannelTeams("exampleChannelTeams",
bot_name=example_channels_registration.name,
location=example_channels_registration.location,
resource_group_name=example_resource_group.name)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 exampleChannelsRegistration = new azure.bot.ChannelsRegistration("exampleChannelsRegistration", {
location: "global",
resourceGroupName: exampleResourceGroup.name,
sku: "F0",
microsoftAppId: current.then(current => current.clientId),
});
const exampleChannelTeams = new azure.bot.ChannelTeams("exampleChannelTeams", {
botName: exampleChannelsRegistration.name,
location: exampleChannelsRegistration.location,
resourceGroupName: exampleResourceGroup.name,
});Create a ChannelTeams Resource
new ChannelTeams(name: string, args: ChannelTeamsArgs, opts?: CustomResourceOptions);def ChannelTeams(resource_name, opts=None, bot_name=None, calling_web_hook=None, enable_calling=None, location=None, resource_group_name=None, __props__=None);func NewChannelTeams(ctx *Context, name string, args ChannelTeamsArgs, opts ...ResourceOption) (*ChannelTeams, error)public ChannelTeams(string name, ChannelTeamsArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args ChannelTeamsArgs
- 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 ChannelTeamsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChannelTeamsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
ChannelTeams Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The ChannelTeams resource accepts the following input properties:
- Bot
Name string The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to create the Bot Channel. Changing this forces a new resource to be created.
- Calling
Web stringHook Specifies the webhook for Microsoft Teams channel calls.
- Enable
Calling bool Specifies whether to enable Microsoft Teams channel calls. This defaults to
false.- Location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Bot
Name string The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to create the Bot Channel. Changing this forces a new resource to be created.
- Calling
Web stringHook Specifies the webhook for Microsoft Teams channel calls.
- Enable
Calling bool Specifies whether to enable Microsoft Teams channel calls. This defaults to
false.- Location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- bot
Name string The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
- resource
Group stringName The name of the resource group in which to create the Bot Channel. Changing this forces a new resource to be created.
- calling
Web stringHook Specifies the webhook for Microsoft Teams channel calls.
- enable
Calling boolean Specifies whether to enable Microsoft Teams channel calls. This defaults to
false.- location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- bot_
name str The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
- resource_
group_ strname The name of the resource group in which to create the Bot Channel. Changing this forces a new resource to be created.
- calling_
web_ strhook Specifies the webhook for Microsoft Teams channel calls.
- enable_
calling bool Specifies whether to enable Microsoft Teams channel calls. This defaults to
false.- location str
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the ChannelTeams resource produces the following output properties:
Look up an Existing ChannelTeams Resource
Get an existing ChannelTeams 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?: ChannelTeamsState, opts?: CustomResourceOptions): ChannelTeamsstatic get(resource_name, id, opts=None, bot_name=None, calling_web_hook=None, enable_calling=None, location=None, resource_group_name=None, __props__=None);func GetChannelTeams(ctx *Context, name string, id IDInput, state *ChannelTeamsState, opts ...ResourceOption) (*ChannelTeams, error)public static ChannelTeams Get(string name, Input<string> id, ChannelTeamsState? 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:
- Bot
Name string The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
- Calling
Web stringHook Specifies the webhook for Microsoft Teams channel calls.
- Enable
Calling bool Specifies whether to enable Microsoft Teams channel calls. This defaults to
false.- Location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to create the Bot Channel. Changing this forces a new resource to be created.
- Bot
Name string The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
- Calling
Web stringHook Specifies the webhook for Microsoft Teams channel calls.
- Enable
Calling bool Specifies whether to enable Microsoft Teams channel calls. This defaults to
false.- Location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to create the Bot Channel. Changing this forces a new resource to be created.
- bot
Name string The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
- calling
Web stringHook Specifies the webhook for Microsoft Teams channel calls.
- enable
Calling boolean Specifies whether to enable Microsoft Teams channel calls. This defaults to
false.- location string
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- resource
Group stringName The name of the resource group in which to create the Bot Channel. Changing this forces a new resource to be created.
- bot_
name str The name of the Bot Resource this channel will be associated with. Changing this forces a new resource to be created.
- calling_
web_ strhook Specifies the webhook for Microsoft Teams channel calls.
- enable_
calling bool Specifies whether to enable Microsoft Teams channel calls. This defaults to
false.- location str
The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- resource_
group_ strname The name of the resource group in which to create the Bot Channel. Changing this forces a new resource to be created.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.