We recommend using Azure Native.
azure.bot.Connection
Explore with Pulumi AI
Manages a Bot Connection.
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 exampleChannelsRegistration = new azure.bot.ChannelsRegistration("example", {
    name: "example",
    location: "global",
    resourceGroupName: example.name,
    sku: "F0",
    microsoftAppId: current.then(current => current.clientId),
});
const exampleConnection = new azure.bot.Connection("example", {
    name: "example",
    botName: exampleChannelsRegistration.name,
    location: exampleChannelsRegistration.location,
    resourceGroupName: example.name,
    serviceProviderName: "box",
    clientId: "exampleId",
    clientSecret: "exampleSecret",
});
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_channels_registration = azure.bot.ChannelsRegistration("example",
    name="example",
    location="global",
    resource_group_name=example.name,
    sku="F0",
    microsoft_app_id=current.client_id)
example_connection = azure.bot.Connection("example",
    name="example",
    bot_name=example_channels_registration.name,
    location=example_channels_registration.location,
    resource_group_name=example.name,
    service_provider_name="box",
    client_id="exampleId",
    client_secret="exampleSecret")
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
		}
		exampleChannelsRegistration, err := bot.NewChannelsRegistration(ctx, "example", &bot.ChannelsRegistrationArgs{
			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
		}
		_, err = bot.NewConnection(ctx, "example", &bot.ConnectionArgs{
			Name:                pulumi.String("example"),
			BotName:             exampleChannelsRegistration.Name,
			Location:            exampleChannelsRegistration.Location,
			ResourceGroupName:   example.Name,
			ServiceProviderName: pulumi.String("box"),
			ClientId:            pulumi.String("exampleId"),
			ClientSecret:        pulumi.String("exampleSecret"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
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 exampleChannelsRegistration = new Azure.Bot.ChannelsRegistration("example", new()
    {
        Name = "example",
        Location = "global",
        ResourceGroupName = example.Name,
        Sku = "F0",
        MicrosoftAppId = current.Apply(getClientConfigResult => getClientConfigResult.ClientId),
    });
    var exampleConnection = new Azure.Bot.Connection("example", new()
    {
        Name = "example",
        BotName = exampleChannelsRegistration.Name,
        Location = exampleChannelsRegistration.Location,
        ResourceGroupName = example.Name,
        ServiceProviderName = "box",
        ClientId = "exampleId",
        ClientSecret = "exampleSecret",
    });
});
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.ChannelsRegistration;
import com.pulumi.azure.bot.ChannelsRegistrationArgs;
import com.pulumi.azure.bot.Connection;
import com.pulumi.azure.bot.ConnectionArgs;
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 exampleChannelsRegistration = new ChannelsRegistration("exampleChannelsRegistration", ChannelsRegistrationArgs.builder()
            .name("example")
            .location("global")
            .resourceGroupName(example.name())
            .sku("F0")
            .microsoftAppId(current.applyValue(getClientConfigResult -> getClientConfigResult.clientId()))
            .build());
        var exampleConnection = new Connection("exampleConnection", ConnectionArgs.builder()
            .name("example")
            .botName(exampleChannelsRegistration.name())
            .location(exampleChannelsRegistration.location())
            .resourceGroupName(example.name())
            .serviceProviderName("box")
            .clientId("exampleId")
            .clientSecret("exampleSecret")
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleChannelsRegistration:
    type: azure:bot:ChannelsRegistration
    name: example
    properties:
      name: example
      location: global
      resourceGroupName: ${example.name}
      sku: F0
      microsoftAppId: ${current.clientId}
  exampleConnection:
    type: azure:bot:Connection
    name: example
    properties:
      name: example
      botName: ${exampleChannelsRegistration.name}
      location: ${exampleChannelsRegistration.location}
      resourceGroupName: ${example.name}
      serviceProviderName: box
      clientId: exampleId
      clientSecret: exampleSecret
variables:
  current:
    fn::invoke:
      function: azure:core:getClientConfig
      arguments: {}
Create Connection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Connection(name: string, args: ConnectionArgs, opts?: CustomResourceOptions);@overload
def Connection(resource_name: str,
               args: ConnectionArgs,
               opts: Optional[ResourceOptions] = None)
@overload
def Connection(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               bot_name: Optional[str] = None,
               client_id: Optional[str] = None,
               client_secret: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               service_provider_name: Optional[str] = None,
               location: Optional[str] = None,
               name: Optional[str] = None,
               parameters: Optional[Mapping[str, str]] = None,
               scopes: Optional[str] = None)func NewConnection(ctx *Context, name string, args ConnectionArgs, opts ...ResourceOption) (*Connection, error)public Connection(string name, ConnectionArgs args, CustomResourceOptions? opts = null)
public Connection(String name, ConnectionArgs args)
public Connection(String name, ConnectionArgs args, CustomResourceOptions options)
type: azure:bot:Connection
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 ConnectionArgs
- 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 ConnectionArgs
- 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 ConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectionArgs
- 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 exampleconnectionResourceResourceFromBotconnection = new Azure.Bot.Connection("exampleconnectionResourceResourceFromBotconnection", new()
{
    BotName = "string",
    ClientId = "string",
    ClientSecret = "string",
    ResourceGroupName = "string",
    ServiceProviderName = "string",
    Location = "string",
    Name = "string",
    Parameters = 
    {
        { "string", "string" },
    },
    Scopes = "string",
});
example, err := bot.NewConnection(ctx, "exampleconnectionResourceResourceFromBotconnection", &bot.ConnectionArgs{
	BotName:             pulumi.String("string"),
	ClientId:            pulumi.String("string"),
	ClientSecret:        pulumi.String("string"),
	ResourceGroupName:   pulumi.String("string"),
	ServiceProviderName: pulumi.String("string"),
	Location:            pulumi.String("string"),
	Name:                pulumi.String("string"),
	Parameters: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Scopes: pulumi.String("string"),
})
var exampleconnectionResourceResourceFromBotconnection = new Connection("exampleconnectionResourceResourceFromBotconnection", ConnectionArgs.builder()
    .botName("string")
    .clientId("string")
    .clientSecret("string")
    .resourceGroupName("string")
    .serviceProviderName("string")
    .location("string")
    .name("string")
    .parameters(Map.of("string", "string"))
    .scopes("string")
    .build());
exampleconnection_resource_resource_from_botconnection = azure.bot.Connection("exampleconnectionResourceResourceFromBotconnection",
    bot_name="string",
    client_id="string",
    client_secret="string",
    resource_group_name="string",
    service_provider_name="string",
    location="string",
    name="string",
    parameters={
        "string": "string",
    },
    scopes="string")
const exampleconnectionResourceResourceFromBotconnection = new azure.bot.Connection("exampleconnectionResourceResourceFromBotconnection", {
    botName: "string",
    clientId: "string",
    clientSecret: "string",
    resourceGroupName: "string",
    serviceProviderName: "string",
    location: "string",
    name: "string",
    parameters: {
        string: "string",
    },
    scopes: "string",
});
type: azure:bot:Connection
properties:
    botName: string
    clientId: string
    clientSecret: string
    location: string
    name: string
    parameters:
        string: string
    resourceGroupName: string
    scopes: string
    serviceProviderName: string
Connection 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 Connection resource accepts the following input properties:
- BotName string
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- ClientId string
- The Client ID that will be used to authenticate with the service provider.
- ClientSecret string
- The Client Secret that will be used to authenticate with the service provider.
- ResourceGroup stringName 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- ServiceProvider stringName 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- Location string
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- Parameters Dictionary<string, string>
- A map of additional parameters to apply to the connection.
- Scopes string
- The Scopes at which the connection should be applied.
- BotName string
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- ClientId string
- The Client ID that will be used to authenticate with the service provider.
- ClientSecret string
- The Client Secret that will be used to authenticate with the service provider.
- ResourceGroup stringName 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- ServiceProvider stringName 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- Location string
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- Parameters map[string]string
- A map of additional parameters to apply to the connection.
- Scopes string
- The Scopes at which the connection should be applied.
- botName String
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- clientId String
- The Client ID that will be used to authenticate with the service provider.
- clientSecret String
- The Client Secret that will be used to authenticate with the service provider.
- resourceGroup StringName 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- serviceProvider StringName 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- location String
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- parameters Map<String,String>
- A map of additional parameters to apply to the connection.
- scopes String
- The Scopes at which the connection should be applied.
- botName string
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- clientId string
- The Client ID that will be used to authenticate with the service provider.
- clientSecret string
- The Client Secret that will be used to authenticate with the service provider.
- resourceGroup stringName 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- serviceProvider stringName 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- location string
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- parameters {[key: string]: string}
- A map of additional parameters to apply to the connection.
- scopes string
- The Scopes at which the connection should be applied.
- bot_name str
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- client_id str
- The Client ID that will be used to authenticate with the service provider.
- client_secret str
- The Client Secret that will be used to authenticate with the service provider.
- resource_group_ strname 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- service_provider_ strname 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- location str
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- parameters Mapping[str, str]
- A map of additional parameters to apply to the connection.
- scopes str
- The Scopes at which the connection should be applied.
- botName String
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- clientId String
- The Client ID that will be used to authenticate with the service provider.
- clientSecret String
- The Client Secret that will be used to authenticate with the service provider.
- resourceGroup StringName 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- serviceProvider StringName 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- location String
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- parameters Map<String>
- A map of additional parameters to apply to the connection.
- scopes String
- The Scopes at which the connection should be applied.
Outputs
All input properties are implicitly available as output properties. Additionally, the Connection 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 Connection Resource
Get an existing Connection 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?: ConnectionState, opts?: CustomResourceOptions): Connection@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bot_name: Optional[str] = None,
        client_id: Optional[str] = None,
        client_secret: Optional[str] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        parameters: Optional[Mapping[str, str]] = None,
        resource_group_name: Optional[str] = None,
        scopes: Optional[str] = None,
        service_provider_name: Optional[str] = None) -> Connectionfunc GetConnection(ctx *Context, name string, id IDInput, state *ConnectionState, opts ...ResourceOption) (*Connection, error)public static Connection Get(string name, Input<string> id, ConnectionState? state, CustomResourceOptions? opts = null)public static Connection get(String name, Output<String> id, ConnectionState state, CustomResourceOptions options)resources:  _:    type: azure:bot:Connection    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.
- BotName string
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- ClientId string
- The Client ID that will be used to authenticate with the service provider.
- ClientSecret string
- The Client Secret that will be used to authenticate with the service provider.
- Location string
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- Parameters Dictionary<string, string>
- A map of additional parameters to apply to the connection.
- ResourceGroup stringName 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- Scopes string
- The Scopes at which the connection should be applied.
- ServiceProvider stringName 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- BotName string
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- ClientId string
- The Client ID that will be used to authenticate with the service provider.
- ClientSecret string
- The Client Secret that will be used to authenticate with the service provider.
- Location string
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- Parameters map[string]string
- A map of additional parameters to apply to the connection.
- ResourceGroup stringName 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- Scopes string
- The Scopes at which the connection should be applied.
- ServiceProvider stringName 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- botName String
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- clientId String
- The Client ID that will be used to authenticate with the service provider.
- clientSecret String
- The Client Secret that will be used to authenticate with the service provider.
- location String
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- parameters Map<String,String>
- A map of additional parameters to apply to the connection.
- resourceGroup StringName 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- scopes String
- The Scopes at which the connection should be applied.
- serviceProvider StringName 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- botName string
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- clientId string
- The Client ID that will be used to authenticate with the service provider.
- clientSecret string
- The Client Secret that will be used to authenticate with the service provider.
- location string
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- parameters {[key: string]: string}
- A map of additional parameters to apply to the connection.
- resourceGroup stringName 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- scopes string
- The Scopes at which the connection should be applied.
- serviceProvider stringName 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- bot_name str
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- client_id str
- The Client ID that will be used to authenticate with the service provider.
- client_secret str
- The Client Secret that will be used to authenticate with the service provider.
- location str
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- parameters Mapping[str, str]
- A map of additional parameters to apply to the connection.
- resource_group_ strname 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- scopes str
- The Scopes at which the connection should be applied.
- service_provider_ strname 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
- botName String
- The name of the Bot Resource this connection will be associated with. Changing this forces a new resource to be created.
- clientId String
- The Client ID that will be used to authenticate with the service provider.
- clientSecret String
- The Client Secret that will be used to authenticate with the service provider.
- location String
- The supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Bot Connection. Changing this forces a new resource to be created. Must be globally unique.
- parameters Map<String>
- A map of additional parameters to apply to the connection.
- resourceGroup StringName 
- The name of the resource group in which to create the Bot Connection. Changing this forces a new resource to be created.
- scopes String
- The Scopes at which the connection should be applied.
- serviceProvider StringName 
- The name of the service provider that will be associated with this connection. Changing this forces a new resource to be created.
Import
Bot Connection can be imported using the resource id, e.g.
$ pulumi import azure:bot/connection:Connection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.BotService/botServices/example/connections/example
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.