1. Packages
  2. Azure Classic
  3. API Docs
  4. iot
  5. EndpointCosmosdbAccount

We recommend using Azure Native.

Azure Classic v5.74.0 published on Monday, Apr 29, 2024 by Pulumi

azure.iot.EndpointCosmosdbAccount

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.74.0 published on Monday, Apr 29, 2024 by Pulumi

    Manages an IotHub Cosmos DB Account Endpoint

    NOTE: Endpoints can be defined either directly on the azure.iot.IoTHub resource, or using the azurerm_iothub_endpoint_* resources - but the two ways of defining the endpoints cannot be used together. If both are used against the same IoTHub, spurious changes will occur. Also, defining a azurerm_iothub_endpoint_* resource and another endpoint of a different type directly on the azure.iot.IoTHub resource is not supported.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleIoTHub = new azure.iot.IoTHub("example", {
        name: "exampleIothub",
        resourceGroupName: example.name,
        location: example.location,
        sku: {
            name: "B1",
            capacity: 1,
        },
        tags: {
            purpose: "example",
        },
    });
    const exampleAccount = new azure.cosmosdb.Account("example", {
        name: "cosmosdb-account",
        location: example.location,
        resourceGroupName: example.name,
        offerType: "Standard",
        kind: "GlobalDocumentDB",
        consistencyPolicy: {
            consistencyLevel: "Strong",
        },
        geoLocations: [{
            location: example.location,
            failoverPriority: 0,
        }],
    });
    const exampleSqlDatabase = new azure.cosmosdb.SqlDatabase("example", {
        name: "cosmos-sql-db",
        resourceGroupName: exampleAccount.resourceGroupName,
        accountName: exampleAccount.name,
    });
    const exampleSqlContainer = new azure.cosmosdb.SqlContainer("example", {
        name: "example-container",
        resourceGroupName: exampleAccount.resourceGroupName,
        accountName: exampleAccount.name,
        databaseName: exampleSqlDatabase.name,
        partitionKeyPath: "/definition/id",
    });
    const exampleEndpointCosmosdbAccount = new azure.iot.EndpointCosmosdbAccount("example", {
        name: "example",
        resourceGroupName: example.name,
        iothubId: exampleIoTHub.id,
        containerName: exampleSqlContainer.name,
        databaseName: exampleSqlDatabase.name,
        endpointUri: exampleAccount.endpoint,
        primaryKey: exampleAccount.primaryKey,
        secondaryKey: exampleAccount.secondaryKey,
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_io_t_hub = azure.iot.IoTHub("example",
        name="exampleIothub",
        resource_group_name=example.name,
        location=example.location,
        sku=azure.iot.IoTHubSkuArgs(
            name="B1",
            capacity=1,
        ),
        tags={
            "purpose": "example",
        })
    example_account = azure.cosmosdb.Account("example",
        name="cosmosdb-account",
        location=example.location,
        resource_group_name=example.name,
        offer_type="Standard",
        kind="GlobalDocumentDB",
        consistency_policy=azure.cosmosdb.AccountConsistencyPolicyArgs(
            consistency_level="Strong",
        ),
        geo_locations=[azure.cosmosdb.AccountGeoLocationArgs(
            location=example.location,
            failover_priority=0,
        )])
    example_sql_database = azure.cosmosdb.SqlDatabase("example",
        name="cosmos-sql-db",
        resource_group_name=example_account.resource_group_name,
        account_name=example_account.name)
    example_sql_container = azure.cosmosdb.SqlContainer("example",
        name="example-container",
        resource_group_name=example_account.resource_group_name,
        account_name=example_account.name,
        database_name=example_sql_database.name,
        partition_key_path="/definition/id")
    example_endpoint_cosmosdb_account = azure.iot.EndpointCosmosdbAccount("example",
        name="example",
        resource_group_name=example.name,
        iothub_id=example_io_t_hub.id,
        container_name=example_sql_container.name,
        database_name=example_sql_database.name,
        endpoint_uri=example_account.endpoint,
        primary_key=example_account.primary_key,
        secondary_key=example_account.secondary_key)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/cosmosdb"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/iot"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleIoTHub, err := iot.NewIoTHub(ctx, "example", &iot.IoTHubArgs{
    			Name:              pulumi.String("exampleIothub"),
    			ResourceGroupName: example.Name,
    			Location:          example.Location,
    			Sku: &iot.IoTHubSkuArgs{
    				Name:     pulumi.String("B1"),
    				Capacity: pulumi.Int(1),
    			},
    			Tags: pulumi.StringMap{
    				"purpose": pulumi.String("example"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleAccount, err := cosmosdb.NewAccount(ctx, "example", &cosmosdb.AccountArgs{
    			Name:              pulumi.String("cosmosdb-account"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			OfferType:         pulumi.String("Standard"),
    			Kind:              pulumi.String("GlobalDocumentDB"),
    			ConsistencyPolicy: &cosmosdb.AccountConsistencyPolicyArgs{
    				ConsistencyLevel: pulumi.String("Strong"),
    			},
    			GeoLocations: cosmosdb.AccountGeoLocationArray{
    				&cosmosdb.AccountGeoLocationArgs{
    					Location:         example.Location,
    					FailoverPriority: pulumi.Int(0),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleSqlDatabase, err := cosmosdb.NewSqlDatabase(ctx, "example", &cosmosdb.SqlDatabaseArgs{
    			Name:              pulumi.String("cosmos-sql-db"),
    			ResourceGroupName: exampleAccount.ResourceGroupName,
    			AccountName:       exampleAccount.Name,
    		})
    		if err != nil {
    			return err
    		}
    		exampleSqlContainer, err := cosmosdb.NewSqlContainer(ctx, "example", &cosmosdb.SqlContainerArgs{
    			Name:              pulumi.String("example-container"),
    			ResourceGroupName: exampleAccount.ResourceGroupName,
    			AccountName:       exampleAccount.Name,
    			DatabaseName:      exampleSqlDatabase.Name,
    			PartitionKeyPath:  pulumi.String("/definition/id"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = iot.NewEndpointCosmosdbAccount(ctx, "example", &iot.EndpointCosmosdbAccountArgs{
    			Name:              pulumi.String("example"),
    			ResourceGroupName: example.Name,
    			IothubId:          exampleIoTHub.ID(),
    			ContainerName:     exampleSqlContainer.Name,
    			DatabaseName:      exampleSqlDatabase.Name,
    			EndpointUri:       exampleAccount.Endpoint,
    			PrimaryKey:        exampleAccount.PrimaryKey,
    			SecondaryKey:      exampleAccount.SecondaryKey,
    		})
    		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 example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleIoTHub = new Azure.Iot.IoTHub("example", new()
        {
            Name = "exampleIothub",
            ResourceGroupName = example.Name,
            Location = example.Location,
            Sku = new Azure.Iot.Inputs.IoTHubSkuArgs
            {
                Name = "B1",
                Capacity = 1,
            },
            Tags = 
            {
                { "purpose", "example" },
            },
        });
    
        var exampleAccount = new Azure.CosmosDB.Account("example", new()
        {
            Name = "cosmosdb-account",
            Location = example.Location,
            ResourceGroupName = example.Name,
            OfferType = "Standard",
            Kind = "GlobalDocumentDB",
            ConsistencyPolicy = new Azure.CosmosDB.Inputs.AccountConsistencyPolicyArgs
            {
                ConsistencyLevel = "Strong",
            },
            GeoLocations = new[]
            {
                new Azure.CosmosDB.Inputs.AccountGeoLocationArgs
                {
                    Location = example.Location,
                    FailoverPriority = 0,
                },
            },
        });
    
        var exampleSqlDatabase = new Azure.CosmosDB.SqlDatabase("example", new()
        {
            Name = "cosmos-sql-db",
            ResourceGroupName = exampleAccount.ResourceGroupName,
            AccountName = exampleAccount.Name,
        });
    
        var exampleSqlContainer = new Azure.CosmosDB.SqlContainer("example", new()
        {
            Name = "example-container",
            ResourceGroupName = exampleAccount.ResourceGroupName,
            AccountName = exampleAccount.Name,
            DatabaseName = exampleSqlDatabase.Name,
            PartitionKeyPath = "/definition/id",
        });
    
        var exampleEndpointCosmosdbAccount = new Azure.Iot.EndpointCosmosdbAccount("example", new()
        {
            Name = "example",
            ResourceGroupName = example.Name,
            IothubId = exampleIoTHub.Id,
            ContainerName = exampleSqlContainer.Name,
            DatabaseName = exampleSqlDatabase.Name,
            EndpointUri = exampleAccount.Endpoint,
            PrimaryKey = exampleAccount.PrimaryKey,
            SecondaryKey = exampleAccount.SecondaryKey,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.iot.IoTHub;
    import com.pulumi.azure.iot.IoTHubArgs;
    import com.pulumi.azure.iot.inputs.IoTHubSkuArgs;
    import com.pulumi.azure.cosmosdb.Account;
    import com.pulumi.azure.cosmosdb.AccountArgs;
    import com.pulumi.azure.cosmosdb.inputs.AccountConsistencyPolicyArgs;
    import com.pulumi.azure.cosmosdb.inputs.AccountGeoLocationArgs;
    import com.pulumi.azure.cosmosdb.SqlDatabase;
    import com.pulumi.azure.cosmosdb.SqlDatabaseArgs;
    import com.pulumi.azure.cosmosdb.SqlContainer;
    import com.pulumi.azure.cosmosdb.SqlContainerArgs;
    import com.pulumi.azure.iot.EndpointCosmosdbAccount;
    import com.pulumi.azure.iot.EndpointCosmosdbAccountArgs;
    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) {
            var example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleIoTHub = new IoTHub("exampleIoTHub", IoTHubArgs.builder()        
                .name("exampleIothub")
                .resourceGroupName(example.name())
                .location(example.location())
                .sku(IoTHubSkuArgs.builder()
                    .name("B1")
                    .capacity("1")
                    .build())
                .tags(Map.of("purpose", "example"))
                .build());
    
            var exampleAccount = new Account("exampleAccount", AccountArgs.builder()        
                .name("cosmosdb-account")
                .location(example.location())
                .resourceGroupName(example.name())
                .offerType("Standard")
                .kind("GlobalDocumentDB")
                .consistencyPolicy(AccountConsistencyPolicyArgs.builder()
                    .consistencyLevel("Strong")
                    .build())
                .geoLocations(AccountGeoLocationArgs.builder()
                    .location(example.location())
                    .failoverPriority(0)
                    .build())
                .build());
    
            var exampleSqlDatabase = new SqlDatabase("exampleSqlDatabase", SqlDatabaseArgs.builder()        
                .name("cosmos-sql-db")
                .resourceGroupName(exampleAccount.resourceGroupName())
                .accountName(exampleAccount.name())
                .build());
    
            var exampleSqlContainer = new SqlContainer("exampleSqlContainer", SqlContainerArgs.builder()        
                .name("example-container")
                .resourceGroupName(exampleAccount.resourceGroupName())
                .accountName(exampleAccount.name())
                .databaseName(exampleSqlDatabase.name())
                .partitionKeyPath("/definition/id")
                .build());
    
            var exampleEndpointCosmosdbAccount = new EndpointCosmosdbAccount("exampleEndpointCosmosdbAccount", EndpointCosmosdbAccountArgs.builder()        
                .name("example")
                .resourceGroupName(example.name())
                .iothubId(exampleIoTHub.id())
                .containerName(exampleSqlContainer.name())
                .databaseName(exampleSqlDatabase.name())
                .endpointUri(exampleAccount.endpoint())
                .primaryKey(exampleAccount.primaryKey())
                .secondaryKey(exampleAccount.secondaryKey())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleIoTHub:
        type: azure:iot:IoTHub
        name: example
        properties:
          name: exampleIothub
          resourceGroupName: ${example.name}
          location: ${example.location}
          sku:
            name: B1
            capacity: '1'
          tags:
            purpose: example
      exampleAccount:
        type: azure:cosmosdb:Account
        name: example
        properties:
          name: cosmosdb-account
          location: ${example.location}
          resourceGroupName: ${example.name}
          offerType: Standard
          kind: GlobalDocumentDB
          consistencyPolicy:
            consistencyLevel: Strong
          geoLocations:
            - location: ${example.location}
              failoverPriority: 0
      exampleSqlDatabase:
        type: azure:cosmosdb:SqlDatabase
        name: example
        properties:
          name: cosmos-sql-db
          resourceGroupName: ${exampleAccount.resourceGroupName}
          accountName: ${exampleAccount.name}
      exampleSqlContainer:
        type: azure:cosmosdb:SqlContainer
        name: example
        properties:
          name: example-container
          resourceGroupName: ${exampleAccount.resourceGroupName}
          accountName: ${exampleAccount.name}
          databaseName: ${exampleSqlDatabase.name}
          partitionKeyPath: /definition/id
      exampleEndpointCosmosdbAccount:
        type: azure:iot:EndpointCosmosdbAccount
        name: example
        properties:
          name: example
          resourceGroupName: ${example.name}
          iothubId: ${exampleIoTHub.id}
          containerName: ${exampleSqlContainer.name}
          databaseName: ${exampleSqlDatabase.name}
          endpointUri: ${exampleAccount.endpoint}
          primaryKey: ${exampleAccount.primaryKey}
          secondaryKey: ${exampleAccount.secondaryKey}
    

    Create EndpointCosmosdbAccount Resource

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

    Constructor syntax

    new EndpointCosmosdbAccount(name: string, args: EndpointCosmosdbAccountArgs, opts?: CustomResourceOptions);
    @overload
    def EndpointCosmosdbAccount(resource_name: str,
                                args: EndpointCosmosdbAccountArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def EndpointCosmosdbAccount(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                container_name: Optional[str] = None,
                                database_name: Optional[str] = None,
                                endpoint_uri: Optional[str] = None,
                                iothub_id: Optional[str] = None,
                                resource_group_name: Optional[str] = None,
                                authentication_type: Optional[str] = None,
                                identity_id: Optional[str] = None,
                                name: Optional[str] = None,
                                partition_key_name: Optional[str] = None,
                                partition_key_template: Optional[str] = None,
                                primary_key: Optional[str] = None,
                                secondary_key: Optional[str] = None)
    func NewEndpointCosmosdbAccount(ctx *Context, name string, args EndpointCosmosdbAccountArgs, opts ...ResourceOption) (*EndpointCosmosdbAccount, error)
    public EndpointCosmosdbAccount(string name, EndpointCosmosdbAccountArgs args, CustomResourceOptions? opts = null)
    public EndpointCosmosdbAccount(String name, EndpointCosmosdbAccountArgs args)
    public EndpointCosmosdbAccount(String name, EndpointCosmosdbAccountArgs args, CustomResourceOptions options)
    
    type: azure:iot:EndpointCosmosdbAccount
    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 EndpointCosmosdbAccountArgs
    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 EndpointCosmosdbAccountArgs
    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 EndpointCosmosdbAccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EndpointCosmosdbAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EndpointCosmosdbAccountArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var endpointCosmosdbAccountResource = new Azure.Iot.EndpointCosmosdbAccount("endpointCosmosdbAccountResource", new()
    {
        ContainerName = "string",
        DatabaseName = "string",
        EndpointUri = "string",
        IothubId = "string",
        ResourceGroupName = "string",
        AuthenticationType = "string",
        IdentityId = "string",
        Name = "string",
        PartitionKeyName = "string",
        PartitionKeyTemplate = "string",
        PrimaryKey = "string",
        SecondaryKey = "string",
    });
    
    example, err := iot.NewEndpointCosmosdbAccount(ctx, "endpointCosmosdbAccountResource", &iot.EndpointCosmosdbAccountArgs{
    	ContainerName:        pulumi.String("string"),
    	DatabaseName:         pulumi.String("string"),
    	EndpointUri:          pulumi.String("string"),
    	IothubId:             pulumi.String("string"),
    	ResourceGroupName:    pulumi.String("string"),
    	AuthenticationType:   pulumi.String("string"),
    	IdentityId:           pulumi.String("string"),
    	Name:                 pulumi.String("string"),
    	PartitionKeyName:     pulumi.String("string"),
    	PartitionKeyTemplate: pulumi.String("string"),
    	PrimaryKey:           pulumi.String("string"),
    	SecondaryKey:         pulumi.String("string"),
    })
    
    var endpointCosmosdbAccountResource = new EndpointCosmosdbAccount("endpointCosmosdbAccountResource", EndpointCosmosdbAccountArgs.builder()        
        .containerName("string")
        .databaseName("string")
        .endpointUri("string")
        .iothubId("string")
        .resourceGroupName("string")
        .authenticationType("string")
        .identityId("string")
        .name("string")
        .partitionKeyName("string")
        .partitionKeyTemplate("string")
        .primaryKey("string")
        .secondaryKey("string")
        .build());
    
    endpoint_cosmosdb_account_resource = azure.iot.EndpointCosmosdbAccount("endpointCosmosdbAccountResource",
        container_name="string",
        database_name="string",
        endpoint_uri="string",
        iothub_id="string",
        resource_group_name="string",
        authentication_type="string",
        identity_id="string",
        name="string",
        partition_key_name="string",
        partition_key_template="string",
        primary_key="string",
        secondary_key="string")
    
    const endpointCosmosdbAccountResource = new azure.iot.EndpointCosmosdbAccount("endpointCosmosdbAccountResource", {
        containerName: "string",
        databaseName: "string",
        endpointUri: "string",
        iothubId: "string",
        resourceGroupName: "string",
        authenticationType: "string",
        identityId: "string",
        name: "string",
        partitionKeyName: "string",
        partitionKeyTemplate: "string",
        primaryKey: "string",
        secondaryKey: "string",
    });
    
    type: azure:iot:EndpointCosmosdbAccount
    properties:
        authenticationType: string
        containerName: string
        databaseName: string
        endpointUri: string
        identityId: string
        iothubId: string
        name: string
        partitionKeyName: string
        partitionKeyTemplate: string
        primaryKey: string
        resourceGroupName: string
        secondaryKey: string
    

    EndpointCosmosdbAccount Resource Properties

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

    Inputs

    The EndpointCosmosdbAccount resource accepts the following input properties:

    ContainerName string
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    DatabaseName string
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    EndpointUri string
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    IothubId string
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    AuthenticationType string
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    IdentityId string

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    Name string
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    PartitionKeyName string
    The name of the partition key associated with the Cosmos DB Container.
    PartitionKeyTemplate string
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    PrimaryKey string

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    SecondaryKey string

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    ContainerName string
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    DatabaseName string
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    EndpointUri string
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    IothubId string
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    AuthenticationType string
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    IdentityId string

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    Name string
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    PartitionKeyName string
    The name of the partition key associated with the Cosmos DB Container.
    PartitionKeyTemplate string
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    PrimaryKey string

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    SecondaryKey string

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    containerName String
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    databaseName String
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    endpointUri String
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    iothubId String
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    authenticationType String
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    identityId String

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    name String
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    partitionKeyName String
    The name of the partition key associated with the Cosmos DB Container.
    partitionKeyTemplate String
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    primaryKey String

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    secondaryKey String

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    containerName string
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    databaseName string
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    endpointUri string
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    iothubId string
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    authenticationType string
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    identityId string

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    name string
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    partitionKeyName string
    The name of the partition key associated with the Cosmos DB Container.
    partitionKeyTemplate string
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    primaryKey string

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    secondaryKey string

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    container_name str
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    database_name str
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    endpoint_uri str
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    iothub_id str
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    authentication_type str
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    identity_id str

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    name str
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    partition_key_name str
    The name of the partition key associated with the Cosmos DB Container.
    partition_key_template str
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    primary_key str

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    secondary_key str

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    containerName String
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    databaseName String
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    endpointUri String
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    iothubId String
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    authenticationType String
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    identityId String

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    name String
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    partitionKeyName String
    The name of the partition key associated with the Cosmos DB Container.
    partitionKeyTemplate String
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    primaryKey String

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    secondaryKey String

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the EndpointCosmosdbAccount 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 EndpointCosmosdbAccount Resource

    Get an existing EndpointCosmosdbAccount 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?: EndpointCosmosdbAccountState, opts?: CustomResourceOptions): EndpointCosmosdbAccount
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authentication_type: Optional[str] = None,
            container_name: Optional[str] = None,
            database_name: Optional[str] = None,
            endpoint_uri: Optional[str] = None,
            identity_id: Optional[str] = None,
            iothub_id: Optional[str] = None,
            name: Optional[str] = None,
            partition_key_name: Optional[str] = None,
            partition_key_template: Optional[str] = None,
            primary_key: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            secondary_key: Optional[str] = None) -> EndpointCosmosdbAccount
    func GetEndpointCosmosdbAccount(ctx *Context, name string, id IDInput, state *EndpointCosmosdbAccountState, opts ...ResourceOption) (*EndpointCosmosdbAccount, error)
    public static EndpointCosmosdbAccount Get(string name, Input<string> id, EndpointCosmosdbAccountState? state, CustomResourceOptions? opts = null)
    public static EndpointCosmosdbAccount get(String name, Output<String> id, EndpointCosmosdbAccountState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    AuthenticationType string
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    ContainerName string
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    DatabaseName string
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    EndpointUri string
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    IdentityId string

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    IothubId string
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    Name string
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    PartitionKeyName string
    The name of the partition key associated with the Cosmos DB Container.
    PartitionKeyTemplate string
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    PrimaryKey string

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    ResourceGroupName string
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    SecondaryKey string

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    AuthenticationType string
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    ContainerName string
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    DatabaseName string
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    EndpointUri string
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    IdentityId string

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    IothubId string
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    Name string
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    PartitionKeyName string
    The name of the partition key associated with the Cosmos DB Container.
    PartitionKeyTemplate string
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    PrimaryKey string

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    ResourceGroupName string
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    SecondaryKey string

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    authenticationType String
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    containerName String
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    databaseName String
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    endpointUri String
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    identityId String

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    iothubId String
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    name String
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    partitionKeyName String
    The name of the partition key associated with the Cosmos DB Container.
    partitionKeyTemplate String
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    primaryKey String

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    resourceGroupName String
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    secondaryKey String

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    authenticationType string
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    containerName string
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    databaseName string
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    endpointUri string
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    identityId string

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    iothubId string
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    name string
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    partitionKeyName string
    The name of the partition key associated with the Cosmos DB Container.
    partitionKeyTemplate string
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    primaryKey string

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    resourceGroupName string
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    secondaryKey string

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    authentication_type str
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    container_name str
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    database_name str
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    endpoint_uri str
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    identity_id str

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    iothub_id str
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    name str
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    partition_key_name str
    The name of the partition key associated with the Cosmos DB Container.
    partition_key_template str
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    primary_key str

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    resource_group_name str
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    secondary_key str

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    authenticationType String
    The type used to authenticate against the Cosmos DB Account endpoint. Possible values are keyBased and identityBased. Defaults to keyBased.
    containerName String
    The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
    databaseName String
    The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
    endpointUri String
    The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
    identityId String

    The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.

    NOTE: identity_id can only be specified when authentication_type is identityBased. It must be one of the identity_ids of the Iot Hub. If not specified when authentication_type is identityBased, System Assigned Managed Identity of the Iot Hub will be used.

    iothubId String
    The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
    name String
    The name of the endpoint. The name must be unique across endpoint types. The following names are reserved: events, operationsMonitoringEvents, fileNotifications and $default. Changing this forces a new resource to be created.
    partitionKeyName String
    The name of the partition key associated with the Cosmos DB Container.
    partitionKeyTemplate String
    The template for generating a synthetic partition key value for use within the Cosmos DB Container.
    primaryKey String

    The primary key of the Cosmos DB Account.

    NOTE: primary_key must and can only be specified when authentication_type is keyBased.

    resourceGroupName String
    The name of the resource group under which the Cosmos DB Account has been created. Changing this forces a new resource to be created.
    secondaryKey String

    The secondary key of the Cosmos DB Account.

    NOTE: secondary_key must and can only be specified when authentication_type is keyBased.

    Import

    IoTHub Cosmos DB Account Endpoint can be imported using the resource id, e.g.

    $ pulumi import azure:iot/endpointCosmosdbAccount:EndpointCosmosdbAccount endpoint1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Devices/iotHubs/hub1/endpoints/cosmosDBAccountEndpoint1
    

    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.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.74.0 published on Monday, Apr 29, 2024 by Pulumi