Azure CosmosDB (DocumentDB) Gremlin Graph
This page shows how to write Terraform and Azure Resource Manager for CosmosDB (DocumentDB) Gremlin Graph and write them securely.
azurerm_cosmosdb_gremlin_graph (Terraform)
The Gremlin Graph in CosmosDB (DocumentDB) can be configured in Terraform with the resource name azurerm_cosmosdb_gremlin_graph
. The following sections describe 10 examples of how to use the resource and its parameters.
Example Usage from GitHub
resource "azurerm_cosmosdb_gremlin_graph" "serverless" {
name = "tfex-cosmos-gremlin-graph"
resource_group_name = azurerm_cosmosdb_account.example.resource_group_name
account_name = azurerm_cosmosdb_account.example.name
database_name = azurerm_cosmosdb_gremlin_database.example.name
partition_key_path = "/Example"
resource "azurerm_cosmosdb_gremlin_graph" "serverless" {
name = "tfex-cosmos-gremlin-graph"
resource_group_name = azurerm_cosmosdb_account.example.resource_group_name
account_name = azurerm_cosmosdb_account.example.name
database_name = azurerm_cosmosdb_gremlin_database.example.name
partition_key_path = "/Example"
resource "azurerm_cosmosdb_gremlin_graph" "graph" {
name = var.settings.name
resource_group_name = var.resource_group_name
account_name = var.cosmosdb_account_name
database_name = var.gremlin_database_name
partition_key_path = var.settings.partition_key_path
resource "azurerm_cosmosdb_gremlin_graph" "graph" {
name = var.settings.name
resource_group_name = var.resource_group_name
account_name = var.cosmosdb_account_name
database_name = var.gremlin_database_name
partition_key_path = var.settings.partition_key_path
resource "azurerm_cosmosdb_gremlin_graph" "graph" {
name = var.settings.name
resource_group_name = var.resource_group_name
account_name = var.cosmosdb_account_name
database_name = var.gremlin_database_name
partition_key_path = var.settings.partition_key_path
resource "azurerm_cosmosdb_gremlin_graph" "graph" {
name = var.settings.name
resource_group_name = var.resource_group_name
account_name = var.cosmosdb_account_name
database_name = var.gremlin_database_name
partition_key_path = var.settings.partition_key_path
resource "azurerm_cosmosdb_gremlin_graph" "this" {
account_name = var.account_name
database_name = var.database_name
name = var.name
partition_key_path = var.partition_key_path
resource_group_name = var.resource_group_name
resource "azurerm_cosmosdb_gremlin_graph" "skillsmatrix" {
name = "skills-matrix-graph"
resource_group_name = azurerm_cosmosdb_account.skillsmatrix.resource_group_name
account_name = azurerm_cosmosdb_account.skillsmatrix.name
database_name = azurerm_cosmosdb_gremlin_database.skillsmatrix.name
partition_key_path = "/Company"
resource "azurerm_cosmosdb_gremlin_graph" "graph" {
name = var.settings.name
resource_group_name = var.resource_group_name
account_name = var.cosmosdb_account_name
database_name = var.gremlin_database_name
partition_key_path = var.settings.partition_key_path
resource "azurerm_cosmosdb_gremlin_graph" "this" {
account_name = var.account_name
database_name = var.database_name
name = var.name
partition_key_path = var.partition_key_path
resource_group_name = var.resource_group_name
Parameters
-
account_name
required - string -
database_name
required - string -
default_ttl
optional computed - number -
id
optional computed - string -
name
required - string -
partition_key_path
optional - string -
resource_group_name
required - string -
throughput
optional computed - number -
autoscale_settings
list block-
max_throughput
optional computed - number
-
-
conflict_resolution_policy
list block-
conflict_resolution_path
optional - string -
conflict_resolution_procedure
optional - string -
mode
required - string
-
-
index_policy
list block-
automatic
optional - bool -
excluded_paths
optional - set of string -
included_paths
optional - set of string -
indexing_mode
required - string
-
-
timeouts
single block -
unique_key
set block-
paths
required - set of string
-
Explanation in Terraform Registry
Manages a Gremlin Graph within a Cosmos DB Account.
Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs (Azure Resource Manager)
The databaseAccounts/gremlinDatabases/graphs in Microsoft.DocumentDB can be configured in Azure Resource Manager with the resource name Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs
. 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 - stringlocation
optional - stringThe location of the resource group to which the resource belongs.
name
required - stringCosmos DB graph name.
properties
requiredoptions
optionalautoscaleSettings
optionalmaxThroughput
optional - integerRepresents maximum throughput, the resource can scale up to.
throughput
optional - integerRequest Units per second. For example, "throughput": 10000.
resource
requiredconflictResolutionPolicy
optionalconflictResolutionPath
optional - stringThe conflict resolution path in the case of LastWriterWins mode.
conflictResolutionProcedure
optional - stringThe procedure to resolve conflicts in the case of custom mode.
mode
optional - stringIndicates the conflict resolution mode.
defaultTtl
optional - integerDefault time to live
id
required - stringName of the Cosmos DB Gremlin graph
indexingPolicy
optionalautomatic
optional - booleanIndicates if the indexing policy is automatic
compositeIndexes
optional - arrayList of composite path list
excludedPaths
optional arraypath
optional - stringThe path for which the indexing behavior applies to. Index paths typically start with root and end with wildcard (/path/*)
includedPaths
optional arrayindexes
optional arraydataType
optional - stringThe datatype for which the indexing behavior is applied to.
kind
optional - stringIndicates the type of index.
precision
optional - integerThe precision of the index. -1 is maximum precision.
path
optional - stringThe path for which the indexing behavior applies to. Index paths typically start with root and end with wildcard (/path/*)
indexingMode
optional - stringIndicates the indexing mode.
spatialIndexes
optional arraypath
optional - stringThe path for which the indexing behavior applies to. Index paths typically start with root and end with wildcard (/path/*)
types
optional - arrayList of path's spatial type
partitionKey
optionalkind
optional - stringIndicates the kind of algorithm used for partitioning. For MultiHash, multiple partition keys (upto three maximum) are supported for container create.
paths
optional - arrayList of paths using which data within the container can be partitioned
version
optional - integerIndicates the version of the partition key definition
uniqueKeyPolicy
optionaluniqueKeys
optional arraypaths
optional - arrayList of paths must be unique for each document in the Azure Cosmos DB service
tags
optional - stringTags 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) Gremlin Graph?
Azure CosmosDB (DocumentDB) Gremlin Graph is a resource for CosmosDB (DocumentDB) of Microsoft Azure. Settings can be wrote in Terraform.
Where can I find the example code for the Azure CosmosDB (DocumentDB) Gremlin Graph?
For Terraform, the gilyas/infracost, infracost/infracost and anmoltoppo/Terraform source code examples are useful. See the Terraform Example section for further details.