We recommend using Azure Native.
azure.iot.EndpointCosmosdbAccount
Explore with Pulumi AI
Manages an IotHub Cosmos DB Account Endpoint
NOTE: Endpoints can be defined either directly on the
azure.iot.IoTHub
resource, or using theazurerm_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 aazurerm_iothub_endpoint_*
resource and another endpoint of a different type directly on theazure.iot.IoTHub
resource is not supported.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
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.
Constructor 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EndpointCosmosdbAccount resource accepts the following input properties:
- Container
Name string - The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
- Database
Name string - The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
- Endpoint
Uri string - The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
- Iothub
Id string - The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
- Resource
Group stringName - 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 string - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - Identity
Id string The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.
NOTE:
identity_id
can only be specified whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, 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. - Partition
Key stringName - The name of the partition key associated with the Cosmos DB Container.
- Partition
Key stringTemplate - The template for generating a synthetic partition key value for use within the Cosmos DB Container.
- Primary
Key string The primary key of the Cosmos DB Account.
NOTE:
primary_key
must and can only be specified whenauthentication_type
iskeyBased
.- Secondary
Key string The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
- Container
Name string - The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
- Database
Name string - The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
- Endpoint
Uri string - The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
- Iothub
Id string - The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
- Resource
Group stringName - 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 string - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - Identity
Id string The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.
NOTE:
identity_id
can only be specified whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, 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. - Partition
Key stringName - The name of the partition key associated with the Cosmos DB Container.
- Partition
Key stringTemplate - The template for generating a synthetic partition key value for use within the Cosmos DB Container.
- Primary
Key string The primary key of the Cosmos DB Account.
NOTE:
primary_key
must and can only be specified whenauthentication_type
iskeyBased
.- Secondary
Key string The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
- container
Name String - The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
- database
Name String - The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
- endpoint
Uri String - The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
- iothub
Id String - The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
- resource
Group StringName - 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 String - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - identity
Id String The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.
NOTE:
identity_id
can only be specified whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, 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. - partition
Key StringName - The name of the partition key associated with the Cosmos DB Container.
- partition
Key StringTemplate - The template for generating a synthetic partition key value for use within the Cosmos DB Container.
- primary
Key String The primary key of the Cosmos DB Account.
NOTE:
primary_key
must and can only be specified whenauthentication_type
iskeyBased
.- secondary
Key String The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
- container
Name string - The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
- database
Name string - The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
- endpoint
Uri string - The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
- iothub
Id string - The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
- resource
Group stringName - 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 string - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - identity
Id string The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.
NOTE:
identity_id
can only be specified whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, 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. - partition
Key stringName - The name of the partition key associated with the Cosmos DB Container.
- partition
Key stringTemplate - The template for generating a synthetic partition key value for use within the Cosmos DB Container.
- primary
Key string The primary key of the Cosmos DB Account.
NOTE:
primary_key
must and can only be specified whenauthentication_type
iskeyBased
.- secondary
Key string The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
- 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_ strname - 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
andidentityBased
. Defaults tokeyBased
. - 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 whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, 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_ strname - The name of the partition key associated with the Cosmos DB Container.
- partition_
key_ strtemplate - 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 whenauthentication_type
iskeyBased
.- secondary_
key str The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
- container
Name String - The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
- database
Name String - The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
- endpoint
Uri String - The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
- iothub
Id String - The ID of the IoT Hub to create the endpoint. Changing this forces a new resource to be created.
- resource
Group StringName - 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 String - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - identity
Id String The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.
NOTE:
identity_id
can only be specified whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, 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. - partition
Key StringName - The name of the partition key associated with the Cosmos DB Container.
- partition
Key StringTemplate - The template for generating a synthetic partition key value for use within the Cosmos DB Container.
- primary
Key String The primary key of the Cosmos DB Account.
NOTE:
primary_key
must and can only be specified whenauthentication_type
iskeyBased
.- secondary
Key String The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
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.
- Authentication
Type string - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - Container
Name string - The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
- Database
Name string - The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
- Endpoint
Uri string - The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
- Identity
Id string The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.
NOTE:
identity_id
can only be specified whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, System Assigned Managed Identity of the Iot Hub will be used.- Iothub
Id 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. - Partition
Key stringName - The name of the partition key associated with the Cosmos DB Container.
- Partition
Key stringTemplate - The template for generating a synthetic partition key value for use within the Cosmos DB Container.
- Primary
Key string The primary key of the Cosmos DB Account.
NOTE:
primary_key
must and can only be specified whenauthentication_type
iskeyBased
.- Resource
Group stringName - 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 string The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
- Authentication
Type string - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - Container
Name string - The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
- Database
Name string - The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
- Endpoint
Uri string - The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
- Identity
Id string The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.
NOTE:
identity_id
can only be specified whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, System Assigned Managed Identity of the Iot Hub will be used.- Iothub
Id 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. - Partition
Key stringName - The name of the partition key associated with the Cosmos DB Container.
- Partition
Key stringTemplate - The template for generating a synthetic partition key value for use within the Cosmos DB Container.
- Primary
Key string The primary key of the Cosmos DB Account.
NOTE:
primary_key
must and can only be specified whenauthentication_type
iskeyBased
.- Resource
Group stringName - 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 string The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
- authentication
Type String - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - container
Name String - The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
- database
Name String - The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
- endpoint
Uri String - The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
- identity
Id String The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.
NOTE:
identity_id
can only be specified whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, System Assigned Managed Identity of the Iot Hub will be used.- iothub
Id 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. - partition
Key StringName - The name of the partition key associated with the Cosmos DB Container.
- partition
Key StringTemplate - The template for generating a synthetic partition key value for use within the Cosmos DB Container.
- primary
Key String The primary key of the Cosmos DB Account.
NOTE:
primary_key
must and can only be specified whenauthentication_type
iskeyBased
.- resource
Group StringName - 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 String The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
- authentication
Type string - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - container
Name string - The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
- database
Name string - The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
- endpoint
Uri string - The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
- identity
Id string The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.
NOTE:
identity_id
can only be specified whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, System Assigned Managed Identity of the Iot Hub will be used.- iothub
Id 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. - partition
Key stringName - The name of the partition key associated with the Cosmos DB Container.
- partition
Key stringTemplate - The template for generating a synthetic partition key value for use within the Cosmos DB Container.
- primary
Key string The primary key of the Cosmos DB Account.
NOTE:
primary_key
must and can only be specified whenauthentication_type
iskeyBased
.- resource
Group stringName - 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 string The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
- authentication_
type str - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - 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 whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, 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_ strname - The name of the partition key associated with the Cosmos DB Container.
- partition_
key_ strtemplate - 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 whenauthentication_type
iskeyBased
.- resource_
group_ strname - 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 whenauthentication_type
iskeyBased
.
- authentication
Type String - The type used to authenticate against the Cosmos DB Account endpoint. Possible values are
keyBased
andidentityBased
. Defaults tokeyBased
. - container
Name String - The name of the Cosmos DB Container in the Cosmos DB Database. Changing this forces a new resource to be created.
- database
Name String - The name of the Cosmos DB Database in the Cosmos DB Account. Changing this forces a new resource to be created.
- endpoint
Uri String - The URI of the Cosmos DB Account. Changing this forces a new resource to be created.
- identity
Id String The ID of the User Managed Identity used to authenticate against the Cosmos DB Account endpoint.
NOTE:
identity_id
can only be specified whenauthentication_type
isidentityBased
. It must be one of theidentity_ids
of the Iot Hub. If not specified whenauthentication_type
isidentityBased
, System Assigned Managed Identity of the Iot Hub will be used.- iothub
Id 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. - partition
Key StringName - The name of the partition key associated with the Cosmos DB Container.
- partition
Key StringTemplate - The template for generating a synthetic partition key value for use within the Cosmos DB Container.
- primary
Key String The primary key of the Cosmos DB Account.
NOTE:
primary_key
must and can only be specified whenauthentication_type
iskeyBased
.- resource
Group StringName - 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 String The secondary key of the Cosmos DB Account.
NOTE:
secondary_key
must and can only be specified whenauthentication_type
iskeyBased
.
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.