We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a Table within a Cosmos DB Account.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleAccount = Output.Create(Azure.CosmosDB.GetAccount.InvokeAsync(new Azure.CosmosDB.GetAccountArgs
{
Name = "tfex-cosmosdb-account",
ResourceGroupName = "tfex-cosmosdb-account-rg",
}));
var exampleTable = new Azure.CosmosDB.Table("exampleTable", new Azure.CosmosDB.TableArgs
{
ResourceGroupName = exampleAccount.Apply(exampleAccount => exampleAccount.ResourceGroupName),
AccountName = exampleAccount.Apply(exampleAccount => exampleAccount.Name),
Throughput = 400,
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/cosmosdb"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleAccount, err := cosmosdb.LookupAccount(ctx, &cosmosdb.LookupAccountArgs{
Name: "tfex-cosmosdb-account",
ResourceGroupName: "tfex-cosmosdb-account-rg",
}, nil)
if err != nil {
return err
}
_, err = cosmosdb.NewTable(ctx, "exampleTable", &cosmosdb.TableArgs{
ResourceGroupName: pulumi.String(exampleAccount.ResourceGroupName),
AccountName: pulumi.String(exampleAccount.Name),
Throughput: pulumi.Int(400),
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleAccount = azure.cosmosdb.getAccount({
name: "tfex-cosmosdb-account",
resourceGroupName: "tfex-cosmosdb-account-rg",
});
const exampleTable = new azure.cosmosdb.Table("exampleTable", {
resourceGroupName: exampleAccount.then(exampleAccount => exampleAccount.resourceGroupName),
accountName: exampleAccount.then(exampleAccount => exampleAccount.name),
throughput: 400,
});
import pulumi
import pulumi_azure as azure
example_account = azure.cosmosdb.get_account(name="tfex-cosmosdb-account",
resource_group_name="tfex-cosmosdb-account-rg")
example_table = azure.cosmosdb.Table("exampleTable",
resource_group_name=example_account.resource_group_name,
account_name=example_account.name,
throughput=400)
Example coming soon!
Create Table Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Table(name: string, args: TableArgs, opts?: CustomResourceOptions);@overload
def Table(resource_name: str,
args: TableArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Table(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
autoscale_settings: Optional[TableAutoscaleSettingsArgs] = None,
name: Optional[str] = None,
throughput: Optional[int] = None)func NewTable(ctx *Context, name string, args TableArgs, opts ...ResourceOption) (*Table, error)public Table(string name, TableArgs args, CustomResourceOptions? opts = null)type: azure:cosmosdb:Table
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 TableArgs
- 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 TableArgs
- 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 TableArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TableArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TableArgs
- 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 tableResource = new Azure.CosmosDB.Table("tableResource", new()
{
AccountName = "string",
ResourceGroupName = "string",
AutoscaleSettings = new Azure.CosmosDB.Inputs.TableAutoscaleSettingsArgs
{
MaxThroughput = 0,
},
Name = "string",
Throughput = 0,
});
example, err := cosmosdb.NewTable(ctx, "tableResource", &cosmosdb.TableArgs{
AccountName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
AutoscaleSettings: &cosmosdb.TableAutoscaleSettingsArgs{
MaxThroughput: pulumi.Int(0),
},
Name: pulumi.String("string"),
Throughput: pulumi.Int(0),
})
var tableResource = new com.pulumi.azure.cosmosdb.Table("tableResource", com.pulumi.azure.cosmosdb.TableArgs.builder()
.accountName("string")
.resourceGroupName("string")
.autoscaleSettings(TableAutoscaleSettingsArgs.builder()
.maxThroughput(0)
.build())
.name("string")
.throughput(0)
.build());
table_resource = azure.cosmosdb.Table("tableResource",
account_name="string",
resource_group_name="string",
autoscale_settings={
"max_throughput": 0,
},
name="string",
throughput=0)
const tableResource = new azure.cosmosdb.Table("tableResource", {
accountName: "string",
resourceGroupName: "string",
autoscaleSettings: {
maxThroughput: 0,
},
name: "string",
throughput: 0,
});
type: azure:cosmosdb:Table
properties:
accountName: string
autoscaleSettings:
maxThroughput: 0
name: string
resourceGroupName: string
throughput: 0
Table 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 Table resource accepts the following input properties:
- Account
Name string - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- Autoscale
Settings TableAutoscale Settings - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - Name string
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- Throughput int
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
- Account
Name string - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- Autoscale
Settings TableAutoscale Settings Args - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - Name string
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- Throughput int
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
- account
Name String - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- autoscale
Settings TableAutoscale Settings - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - name String
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- throughput Integer
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
- account
Name string - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- resource
Group stringName - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- autoscale
Settings TableAutoscale Settings - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - name string
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- throughput number
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
- account_
name str - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- resource_
group_ strname - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- autoscale_
settings TableAutoscale Settings Args - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - name str
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- throughput int
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
- account
Name String - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- autoscale
Settings Property Map - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - name String
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- throughput Number
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
Outputs
All input properties are implicitly available as output properties. Additionally, the Table 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 Table Resource
Get an existing Table 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?: TableState, opts?: CustomResourceOptions): Table@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
autoscale_settings: Optional[TableAutoscaleSettingsArgs] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
throughput: Optional[int] = None) -> Tablefunc GetTable(ctx *Context, name string, id IDInput, state *TableState, opts ...ResourceOption) (*Table, error)public static Table Get(string name, Input<string> id, TableState? state, CustomResourceOptions? opts = null)public static Table get(String name, Output<String> id, TableState state, CustomResourceOptions options)resources: _: type: azure:cosmosdb:Table get: id: ${id}- 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.
- Account
Name string - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- Autoscale
Settings TableAutoscale Settings - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - Name string
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- Throughput int
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
- Account
Name string - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- Autoscale
Settings TableAutoscale Settings Args - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - Name string
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- Throughput int
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
- account
Name String - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- autoscale
Settings TableAutoscale Settings - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - name String
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- throughput Integer
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
- account
Name string - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- autoscale
Settings TableAutoscale Settings - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - name string
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- resource
Group stringName - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- throughput number
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
- account_
name str - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- autoscale_
settings TableAutoscale Settings Args - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - name str
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- resource_
group_ strname - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- throughput int
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
- account
Name String - The name of the Cosmos DB Table to create the table within. Changing this forces a new resource to be created.
- autoscale
Settings Property Map - An
autoscale_settingsblock as defined below. This must be set upon database creation otherwise it cannot be updated without a manual destroy-apply. - name String
- Specifies the name of the Cosmos DB Table. Changing this forces a new resource to be created.
- resource
Group StringName - The name of the resource group in which the Cosmos DB Table is created. Changing this forces a new resource to be created.
- throughput Number
- The throughput of Table (RU/s). Must be set in increments of
100. The minimum value is400. This must be set upon database creation otherwise it cannot be updated without a manual resource destroy-apply.
Supporting Types
TableAutoscaleSettings, TableAutoscaleSettingsArgs
- Max
Throughput int - The maximum throughput of the Table (RU/s). Must be between
4,000and1,000,000. Must be set in increments of1,000. Conflicts withthroughput.
- Max
Throughput int - The maximum throughput of the Table (RU/s). Must be between
4,000and1,000,000. Must be set in increments of1,000. Conflicts withthroughput.
- max
Throughput Integer - The maximum throughput of the Table (RU/s). Must be between
4,000and1,000,000. Must be set in increments of1,000. Conflicts withthroughput.
- max
Throughput number - The maximum throughput of the Table (RU/s). Must be between
4,000and1,000,000. Must be set in increments of1,000. Conflicts withthroughput.
- max_
throughput int - The maximum throughput of the Table (RU/s). Must be between
4,000and1,000,000. Must be set in increments of1,000. Conflicts withthroughput.
- max
Throughput Number - The maximum throughput of the Table (RU/s). Must be between
4,000and1,000,000. Must be set in increments of1,000. Conflicts withthroughput.
Import
CosmosDB Tables can be imported using the resource id, e.g.
$ pulumi import azure:cosmosdb/table:Table table1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DocumentDB/databaseAccounts/account1/tables/table1
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
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
