azurermCosmosdbTable
Manages a Table within a Cosmos DB Account.
Example Usage
/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as azurerm from "./.gen/providers/azurerm";
/*The following providers are missing schema information and might need manual adjustments to synthesize correctly: azurerm.
For a more precise conversion please use the --provider flag in convert.*/
const dataAzurermCosmosdbAccountExample =
new azurerm.dataAzurermCosmosdbAccount.DataAzurermCosmosdbAccount(
this,
"example",
{
name: "tfex-cosmosdb-account",
resource_group_name: "tfex-cosmosdb-account-rg",
}
);
const azurermCosmosdbTableExample = new azurerm.cosmosdbTable.CosmosdbTable(
this,
"example_1",
{
account_name: dataAzurermCosmosdbAccountExample.name,
name: "tfex-cosmos-table",
resource_group_name: dataAzurermCosmosdbAccountExample.resourceGroupName,
throughput: 400,
}
);
/*This allows the Terraform resource name to match the original name. You can remove the call if you don't need them to match.*/
azurermCosmosdbTableExample.overrideLogicalId("example");
Argument Reference
The following arguments are supported:
-
name
- (Required) Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created. -
resourceGroupName
- (Required) The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created. -
accountName
- (Required) The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created. -
throughput
- (Optional) The throughput of Table (RU/s). Must be set in increments of100
. The minimum value is400
. This must be set upon database creation otherwise it cannot be updated without a manual terraform destroy-apply.
\~> Note: throughput has a maximum value of 1000000
unless a higher limit is requested via Azure Support
autoscaleSettings
- (Optional) AnautoscaleSettings
block as defined below. This must be set upon database creation otherwise it cannot be updated without a manual terraform destroy-apply.
\~> Note: Switching between autoscale and manual throughput is not supported via Terraform and must be completed via the Azure Portal and refreshed.
An autoscaleSettings
block supports the following:
maxThroughput
- (Optional) The maximum throughput of the Table (RU/s). Must be between1,000
and1,000,000
. Must be set in increments of1,000
. Conflicts withthroughput
.
Attributes Reference
The following attributes are exported:
id
- The ID of the CosmosDB Table.
Timeouts
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 30 minutes) Used when creating the CosmosDB Table.update
- (Defaults to 30 minutes) Used when updating the CosmosDB Table.read
- (Defaults to 5 minutes) Used when retrieving the CosmosDB Table.delete
- (Defaults to 30 minutes) Used when deleting the CosmosDB Table.
Import
CosmosDB Tables can be imported using the resourceId
, e.g.