Azure CosmosDB (DocumentDB) SQL Trigger

This page shows how to write Terraform and Azure Resource Manager for CosmosDB (DocumentDB) SQL Trigger and write them securely.

azurerm_cosmosdb_sql_trigger (Terraform)

The SQL Trigger in CosmosDB (DocumentDB) can be configured in Terraform with the resource name azurerm_cosmosdb_sql_trigger. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

The following arguments are supported:

  • name - (Required) The name which should be used for this SQL Trigger. Changing this forces a new SQL Trigger to be created.

  • container_id - (Required) The id of the Cosmos DB SQL Container to create the SQL Trigger within. Changing this forces a new SQL Trigger to be created.

  • body - (Required) Body of the Trigger.

  • operation - (Required) The operation the trigger is associated with. Possible values are All, Create, Update, Delete and Replace.

  • type - (Required) Type of the Trigger. Possible values are Pre and Post.

In addition to the Arguments listed above - the following Attributes are exported:

  • id - The ID of the SQL Trigger.

Explanation in Terraform Registry

Manages an SQL Trigger.

Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers (Azure Resource Manager)

The databaseAccounts/sqlDatabases/containers/triggers in Microsoft.DocumentDB can be configured in Azure Resource Manager with the resource name Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

  • apiVersion required - string
  • location optional - string

    The location of the resource group to which the resource belongs.

  • name required - string

    Cosmos DB trigger name.

  • properties required
      • options optional
          • autoscaleSettings optional
              • maxThroughput optional - integer

                Represents maximum throughput, the resource can scale up to.

          • throughput optional - integer

            Request Units per second. For example, "throughput": 10000.

      • resource required
          • body optional - string

            Body of the Trigger

          • id required - string

            Name of the Cosmos DB SQL trigger

          • triggerOperation optional - string

            The operation the trigger is associated with.

          • triggerType optional - string

            Type of the Trigger.

  • tags optional - string

    Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".

  • type required - string

Frequently asked questions

What is Azure CosmosDB (DocumentDB) SQL Trigger?

Azure CosmosDB (DocumentDB) SQL Trigger is a resource for CosmosDB (DocumentDB) of Microsoft Azure. Settings can be wrote in Terraform.